Compare commits

...

5 commits

Author SHA1 Message Date
4aa3ffcafd style: minor adjustments to kitty and fonts 2024-08-08 02:52:28 -07:00
5c35fda971 feat: add skhd keybinds for yabai 2024-08-05 18:46:25 -07:00
f7e40aa164 feat: add styles to yabai 2024-08-05 18:42:42 -07:00
35873a5b7c fix: partially revert 1056a696 and add kitty back
also adds titlebar-only hide_window_decoration
2024-08-05 18:11:20 -07:00
1d08f51068 feat: hide window decorations for kitty on darwin 2024-08-05 18:08:06 -07:00
4 changed files with 88 additions and 1 deletions

View file

@ -96,6 +96,7 @@
nix-homebrew.darwinModules.nix-homebrew nix-homebrew.darwinModules.nix-homebrew
./modules/darwin/homebrew.nix ./modules/darwin/homebrew.nix
./modules/darwin/yabai.nix ./modules/darwin/yabai.nix
./modules/darwin/skhd.nix
]; ];
}; };
}; };

69
modules/darwin/skhd.nix Normal file
View file

@ -0,0 +1,69 @@
{
services.skhd = {
enable = true;
skhdConfig = ''
# opens iTerm2
alt - return : kitty
# Navigation
alt - y : yabai -m window --focus west
alt - u : yabai -m window --focus south
alt - i : yabai -m window --focus north
alt - o : yabai -m window --focus east
# Moving windows
shift + alt - y : yabai -m window --warp west
shift + alt - u : yabai -m window --warp south
shift + alt - i : yabai -m window --warp north
shift + alt - o : yabai -m window --warp east
# Move focus container to workspace
shift + alt - m : yabai -m window --space last; yabai -m space --focus last
shift + alt - p : yabai -m window --space prev; yabai -m space --focus prev
shift + alt - n : yabai -m window --space next; yabai -m space --focus next
shift + alt - 1 : yabai -m window --space 1; yabai -m space --focus 1
shift + alt - 2 : yabai -m window --space 2; yabai -m space --focus 2
shift + alt - 3 : yabai -m window --space 3; yabai -m space --focus 3
shift + alt - 4 : yabai -m window --space 4; yabai -m space --focus 4
# Resize windows
lctrl + alt - y : yabai -m window --resize left:-50:0; \
yabai -m window --resize right:-50:0
lctrl + alt - u : yabai -m window --resize bottom:0:50; \
yabai -m window --resize top:0:50
lctrl + alt - i : yabai -m window --resize top:0:-50; \
yabai -m window --resize bottom:0:-50
lctrl + alt - o : yabai -m window --resize right:50:0; \
yabai -m window --resize left:50:0
# Equalize size of windows
lctrl + alt - e : yabai -m space --balance
# Enable / Disable gaps in current workspace
lctrl + alt - g : yabai -m space --toggle padding; yabai -m space --toggle gap
# Rotate windows clockwise and anticlockwise
alt - r : yabai -m space --rotate 270
shift + alt - r : yabai -m space --rotate 90
# Rotate on X and Y Axis
shift + alt - x : yabai -m space --mirror x-axis
shift + alt - y : yabai -m space --mirror y-axis
# Set insertion point for focused container
shift + lctrl + alt - h : yabai -m window --insert west
shift + lctrl + alt - j : yabai -m window --insert south
shift + lctrl + alt - k : yabai -m window --insert north
shift + lctrl + alt - l : yabai -m window --insert east
# Float / Unfloat window
shift + alt - space : \
yabai -m window --toggle float; \
yabai -m window --toggle border
# Make window native fullscreen
alt - f : yabai -m window --toggle zoom-fullscreen
shift + alt - f : yabai -m window --toggle native-fullscreen
'';
};
}

View file

@ -21,10 +21,11 @@
mouse_drop_action = "swap"; mouse_drop_action = "swap";
}; };
}; };
services.skhd = { enable = true; };
services.jankyborders = { services.jankyborders = {
enable = true; enable = true;
hidpi = true; hidpi = true;
inactive_color = "gradient(top_right=0x9992B3F5,bottom_left=0x9992B3F5)";
blur_radius = 5.0;
}; };
} }

View file

@ -53,6 +53,22 @@
programs.bash.enable = true; programs.bash.enable = true;
programs.zsh.enable = true; programs.zsh.enable = true;
programs.kitty = {
enable = true;
theme = "Tokyo Night";
font.name = "CaskaydiaCove Nerd Font";
settings = {
font_size = 13;
window_padding_width = "8 8 0";
confirm_os_window_close = -1;
shell_integration = "enabled";
enable_audio_bell = "no";
background_opacity = "0.8";
hide_window_decorations = "titlebar-only";
background_blur = 32;
};
};
# This value determines the home Manager release that your # This value determines the home Manager release that your
# configuration is compatible with. This helps avoid breakage # configuration is compatible with. This helps avoid breakage
# when a new home Manager release introduces backwards # when a new home Manager release introduces backwards