From 5cdb4e421a809de51c3ebe8404e50d732721238b Mon Sep 17 00:00:00 2001 From: Akshay Date: Sun, 26 Sep 2021 21:26:36 +0530 Subject: init --- x/rofi.nix | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 x/rofi.nix (limited to 'x/rofi.nix') diff --git a/x/rofi.nix b/x/rofi.nix new file mode 100644 index 0000000..ff80b05 --- /dev/null +++ b/x/rofi.nix @@ -0,0 +1,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; + }; +} -- cgit v1.2.3