aboutsummaryrefslogtreecommitdiff
path: root/x/rofi.nix
blob: ff80b05b0785bc2a53a315af13b33b2f062bfff5 (plain)
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
, pkgs
, theme
, ...
}:

with theme;
{
  xresources.properties = {
    "rofi.color-enabled" = true;

    "rofi.color-window" = "${base00}, ${base00}, ${base00}, ${base00}, ${base03}";
    "rofi.color-normal" = "${base00}, ${base03}, ${base00}, ${base00}, ${base07}";
    "rofi.color-active" = "${base03}, ${base0E}, ${base00}, ${base0B}, ${base00}";
    "rofi.color-urgent" = "${base00}, ${base03}, ${base00}, ${base00}, ${base03}";

    "rofi.fake-transparency" = true;
    "rofi.font" = "Input 13";
    "rofi.columns" = 1;
    "rofi.separator-style" = "none";
    "rofi.hide-scrollbar" = true;
    "rofi.location" = 1;
    "rofi.yoffset" = 20;
    "rofi.xoffset" = 20;
    "rofi.padding" = 32;
    "rofi.fullscreen" = false;
    "rofi.width" = 300;
    "rofi.lines" = 6;
  };
}