switch to a better launcher

This commit is contained in:
Schrottkatze 2026-01-02 04:54:38 +01:00
commit 45a85e7a82
No known key found for this signature in database
6 changed files with 58 additions and 14 deletions

View file

@ -0,0 +1,28 @@
{ 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 "282828cf";
match = lib.mkForce "d65d0eff";
selection-match = lib.mkForce "fe8019ff";
border = lib.mkForce "bab9e5ff";
};
border = {
radius = 10;
selection-radius = 3;
width = 3;
};
};
};
}