Add font size hotkeys kitty

This commit is contained in:
2023-09-29 21:14:55 +01:00
parent 2b8ac26b47
commit 5c003eacb6

View File

@@ -47,6 +47,7 @@ in {
"kitty_mod+r" = "start_resizing_window"; "kitty_mod+r" = "start_resizing_window";
# Layouts
"kitty_mod+n" = "goto_layout tall:full_size=${ "kitty_mod+n" = "goto_layout tall:full_size=${
if hostname == "pingbox" if hostname == "pingbox"
then "1" then "1"
@@ -62,6 +63,11 @@ in {
# Clipboard # Clipboard
"ctrl+shift+c" = "copy_to_clipboard"; "ctrl+shift+c" = "copy_to_clipboard";
"ctrl+shift+v" = "paste_from_clipboard"; "ctrl+shift+v" = "paste_from_clipboard";
# Font Size
"kitty_mod+equal" = "change_font_size current +2.0";
"kitty_mod+minus" = "change_font_size current -2.0";
"kitty_mod+backspace" = "change_font_size current 0";
}; };
settings = { settings = {
"include" = "catppuccin.conf"; "include" = "catppuccin.conf";