summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Schanzenbacher <ryan@rschanz.org>2026-08-29 18:46:06 -0400
committerRyan Schanzenbacher <ryan@rschanz.org>2026-08-29 18:46:06 -0400
commita2c015245921f589bbd7cc787bfd092474a07992 (patch)
treede8e1686c5f6981128de4f5c1297c4fadf7118d4
parentc589cef163fddefcca977f130319f6b5e3657621 (diff)
Change default to be for any screen other than internal so its a bitHEADmain
more generic
-rw-r--r--hosts/RyanMac/configuration.nix4
-rw-r--r--modules/darwin/yabai/default.nix2
2 files changed, 3 insertions, 3 deletions
diff --git a/hosts/RyanMac/configuration.nix b/hosts/RyanMac/configuration.nix
index 307c7f0..687b941 100644
--- a/hosts/RyanMac/configuration.nix
+++ b/hosts/RyanMac/configuration.nix
@@ -59,9 +59,9 @@ in {
59 local.yabai = { 59 local.yabai = {
60 enable = true; 60 enable = true;
61 defaultPadding = 10; 61 defaultPadding = 10;
62 defaultTopPadding = 10; 62 defaultTopPadding = 40;
63 displayTopPadding = { 63 displayTopPadding = {
64 "6131F10F-6020-4D7E-8222-8702B5AEF45E" = 40; 64 "37D8832A-2D66-02CA-B9F7-8F30A301B230" = 10; # macOS retina display
65 }; 65 };
66 extraSymbolicHotkeys = manualHotkeys; 66 extraSymbolicHotkeys = manualHotkeys;
67 }; 67 };
diff --git a/modules/darwin/yabai/default.nix b/modules/darwin/yabai/default.nix
index 8e64dd1..cc7df15 100644
--- a/modules/darwin/yabai/default.nix
+++ b/modules/darwin/yabai/default.nix
@@ -38,7 +38,7 @@ let
38 | while read -r uuid spaces; do 38 | while read -r uuid spaces; do
39 case "$uuid" in 39 case "$uuid" in
40${padArms} 40${padArms}
41 *) pad=${toString cfg.defaultPadding} ;; 41 *) pad=${toString cfg.defaultTopPadding} ;;
42 esac 42 esac
43 for s in $spaces; do 43 for s in $spaces; do
44 for k in top_padding; do 44 for k in top_padding; do