zaphyra's git: nixfiles

zaphyra's nixfiles

1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
17 
18 
19 
20 
21 
22 
23 
24 
25 
26 
27 
28 
29 
30 
31 
32 
{ ... }:

{

  programs.fuzzel = {
    enable = true;
    settings = {
      main = {
        dpi-aware = false;
        horizontal-pad = 15;
        vertical-pad = 15;
        inner-pad = 5;
      };
      border = {
        width = 2;
        radius = 6;
      };
      colors = {
        background = "#00000080"; # Background color
        text = "#d8daddff"; # Text (foreground) color of unselected entries
        prompt = "#d8daddff"; # Text (foreground) color of prompt character(s)
        input = "#d8daddff"; # Text (foreground) color of input string
        match = "#d8daddff"; # Text (foreground) color of the matched substring
        selection = "#ffffff1a"; # Background color of the selected entry
        selection-text = "#d8daddff"; # Text (foreground) color of the selected entry
        selection-match = "#b7d4edf2"; # Text (foreground) color of the matched substring of the selected entry
        border = "#4aa96cff"; # The color of the match count stats printed at the right-hand side of the input prompt
      };
    };
  };

}