diff options
| author | Natasha Moongrave <natasha@256phi.eu> | 2026-04-10 12:13:36 +0200 |
|---|---|---|
| committer | Natasha Moongrave <natasha@256phi.eu> | 2026-04-10 12:13:36 +0200 |
| commit | 648e12342110718ca3736ec0082a688590cc0f7d (patch) | |
| tree | 0d05e32e6cf7fbb05e8a5e20984e14db77406071 /home/rices/schrottkatze/fuzzel.nix | |
| parent | 0f4f072b317bafad7016dcb9fdb3a4dd593d7f85 (diff) | |
Add schrottkatze rice: terminal, notifications, fuzzel, swayidle, layaway
Kitty with Gruvbox colors, Dunst notifications, Fuzzel launcher,
swayidle/swaylock screen locking, layaway layout tool.
Diffstat (limited to 'home/rices/schrottkatze/fuzzel.nix')
| -rw-r--r-- | home/rices/schrottkatze/fuzzel.nix | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/home/rices/schrottkatze/fuzzel.nix b/home/rices/schrottkatze/fuzzel.nix new file mode 100644 index 0000000..d31dee7 --- /dev/null +++ b/home/rices/schrottkatze/fuzzel.nix @@ -0,0 +1,26 @@ +{lib, ...}: { + programs.fuzzel = { + enable = true; + settings = { + main = { + font = lib.mkForce "Departure Mono:size=13"; + terminal = "kitty"; + lines = 15; + width = 50; + horizontal-pad = 20; + vertical-pad = 12; + }; + colors = { + background = lib.mkForce "282828ff"; + match = lib.mkForce "d65d0eff"; + selection-match = lib.mkForce "fe8019ff"; + border = lib.mkForce "bab9e5ff"; + }; + border = { + radius = 10; + selection-radius = 3; + width = 3; + }; + }; + }; +} |
