aboutsummaryrefslogtreecommitdiff
path: root/util/modules/home/rofi.nix
diff options
context:
space:
mode:
authorCaroline Larimore <caroline@larimo.re>2024-05-12 20:12:49 -0700
committerCaroline Larimore <caroline@larimo.re>2024-05-12 20:12:49 -0700
commit31fa816373038e5fad807131a8526103bd005a6f (patch)
tree26a799d7d17b78fb794362dd3aa5ef378b05f427 /util/modules/home/rofi.nix
parentc7bdfbb27406d90f50e5d46908e0a4e1f96096b2 (diff)
Delete old duplicate config from util
(i have no clue how that even happened?)
Diffstat (limited to 'util/modules/home/rofi.nix')
-rw-r--r--util/modules/home/rofi.nix49
1 files changed, 0 insertions, 49 deletions
diff --git a/util/modules/home/rofi.nix b/util/modules/home/rofi.nix
deleted file mode 100644
index d0ff642..0000000
--- a/util/modules/home/rofi.nix
+++ /dev/null
@@ -1,49 +0,0 @@
-{ config, ... }:
-
-{
- programs.rofi = {
- enable = true;
-
- font = "monospace 12";
-
- theme = let
- inherit (config.lib.formats.rasi) mkLiteral;
- c = config.theme.colors;
- in {
- "@import" = "default";
-
- "*" = {
- background = mkLiteral "#${c.bg}";
- foreground = mkLiteral "#${c.fg}";
- foreground-alt = mkLiteral "#${c.bg3}";
-
- alternate-normal-background = mkLiteral "var(background)";
-
- selected-normal-foreground = mkLiteral "var(background)";
- selected-normal-background = mkLiteral "#${c.accent}";
-
- border-color = mkLiteral "var(background)";
- separatorcolor = mkLiteral "#${c.bg3}";
- };
-
- inputbar = {
- children = map mkLiteral [ "entry" "num-filtered-rows" "textbox-num-sep" "num-rows" ];
- };
-
- element = {
- children = map mkLiteral [ "element-icon" "element-text" ];
- };
-
- entry.placeholder = "";
-
- scrollbar.handle-color = mkLiteral "var(foreground-alt)";
- num-rows.text-color = mkLiteral "var(foreground-alt)";
- num-filtered-rows.text-color = mkLiteral "var(foreground-alt)";
- textbox-num-sep.text-color = mkLiteral "var(foreground-alt)";
-
- message.border = mkLiteral "1px solid 0px 0px";
- listview.border = mkLiteral "1px solid 0px 0px";
- sidebar.border = mkLiteral "1px solid 0px 0px";
- };
- };
-}