diff options
Diffstat (limited to 'roles')
| -rw-r--r-- | roles/home/desktop/default.nix | 2 | ||||
| -rw-r--r-- | roles/home/desktop/rofi.nix | 47 |
2 files changed, 0 insertions, 49 deletions
diff --git a/roles/home/desktop/default.nix b/roles/home/desktop/default.nix index 6ff649f..484def5 100644 --- a/roles/home/desktop/default.nix +++ b/roles/home/desktop/default.nix @@ -60,8 +60,6 @@ let cfg = config.home.roles.desktop; in { gtk.enable = true; programs = { - rofi.enable = true; - fastfetch.enable = cfg.fetch; }; diff --git a/roles/home/desktop/rofi.nix b/roles/home/desktop/rofi.nix deleted file mode 100644 index dff60e7..0000000 --- a/roles/home/desktop/rofi.nix +++ /dev/null @@ -1,47 +0,0 @@ -{ config, ... }: - -{ - programs.rofi = { - 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"; - }; - }; -} |