aboutsummaryrefslogtreecommitdiff
path: root/x
diff options
context:
space:
mode:
authorAkshay <[email protected]>2021-12-28 14:28:53 +0000
committerAkshay <[email protected]>2021-12-28 14:28:53 +0000
commit416c02270fe715b03d86d7faab82c67a858466d7 (patch)
tree9d4bb3d61ecc4dc8f90757ca216663d10b7072cc /x
parent3b8a007e27c19b3840d6377cb3dab5764696d96c (diff)
remove rofi
Diffstat (limited to 'x')
-rw-r--r--x/default.nix1
-rw-r--r--x/rofi.nix30
2 files changed, 0 insertions, 31 deletions
diff --git a/x/default.nix b/x/default.nix
index cd64f61..01adb7a 100644
--- a/x/default.nix
+++ b/x/default.nix
@@ -8,7 +8,6 @@
8 imports = [ 8 imports = [
9 ./2bwm.nix 9 ./2bwm.nix
10 ./xft.nix 10 ./xft.nix
11 ./rofi.nix
12 ./rxvt.nix 11 ./rxvt.nix
13 ]; 12 ];
14} 13}
diff --git a/x/rofi.nix b/x/rofi.nix
deleted file mode 100644
index ff80b05..0000000
--- a/x/rofi.nix
+++ /dev/null
@@ -1,30 +0,0 @@
1{ config
2, pkgs
3, theme
4, ...
5}:
6
7with theme;
8{
9 xresources.properties = {
10 "rofi.color-enabled" = true;
11
12 "rofi.color-window" = "${base00}, ${base00}, ${base00}, ${base00}, ${base03}";
13 "rofi.color-normal" = "${base00}, ${base03}, ${base00}, ${base00}, ${base07}";
14 "rofi.color-active" = "${base03}, ${base0E}, ${base00}, ${base0B}, ${base00}";
15 "rofi.color-urgent" = "${base00}, ${base03}, ${base00}, ${base00}, ${base03}";
16
17 "rofi.fake-transparency" = true;
18 "rofi.font" = "Input 13";
19 "rofi.columns" = 1;
20 "rofi.separator-style" = "none";
21 "rofi.hide-scrollbar" = true;
22 "rofi.location" = 1;
23 "rofi.yoffset" = 20;
24 "rofi.xoffset" = 20;
25 "rofi.padding" = 32;
26 "rofi.fullscreen" = false;
27 "rofi.width" = 300;
28 "rofi.lines" = 6;
29 };
30}