add kitty terminal

This commit is contained in:
Frost-Phoenix 2023-11-06 18:33:34 +01:00
parent 886e2b6b6f
commit 07cb17abe9
3 changed files with 23 additions and 1 deletions

View file

@ -11,6 +11,7 @@
++ [ (import ./btop) ]
++ [ (import ./bat) ]
++ [ (import ./cava) ]
++ [ (import ./kitty) ]
++ [ (import ./foot) ]
++ [ (import ./swaylock) ]
++ [ (import ./wofi) ]

View file

@ -87,7 +87,8 @@ in
# ----------------------------------------------------------------
# keybindings
bind = $mainMod, Return, exec, foot
# bind = $mainMod, Return, exec, foot
bind = $mainMod, Return, exec, kitty
bind = $mainMod SHIFT, Return, exec, foot --fullscreen
bind = $mainMod, Q, killactive,
bind = $mainMod, T, killactive,

View file

@ -0,0 +1,20 @@
{ pkgs, ... }:
{
programs.kitty = {
enable = true;
theme = "Catppuccin-Mocha";
font = {
name = "JetBrainsMono Nerd Font";
size = 13;
};
settings = {
background_opacity = "0.55";
window_padding_width = 5;
scrollback_lines = 10000;
enable_audio_bell = false;
};
};
}