aboutsummaryrefslogtreecommitdiff
path: root/modules/user/desktop/components/fuzzel.nix
blob: e4b6ef877a4bbcf052c0f72b319053411855388e (plain) (blame)
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
{ config, ... }:
{
  programs.fuzzel.settings = {
    border = {
      radius = 0;
      width = 2;
    };

    colors = {
      background = "1e1e2eff";
      border = "89b4faff";
      input = "cdd6f4ff";
      match = "89b4faff";
      placeholder = "7f849cff";
      prompt = "bac2deff";
      selection = "585b70ff";
      selection-match = "89b4faff";
      selection-text = "cdd6f4ff";
      text = "cdd6f4ff";
    };

    main = {
      dpi-aware = true;
      font = "Fira Code:size=6";
      tabs = 4;
      terminal = "foot -a '{cmd}' -T '{cmd}' {cmd}";
      use-bold = true;
    };
  };
}