summaryrefslogtreecommitdiff
path: root/common/modules/matugen/templates/matugen-rofi.nix
diff options
context:
space:
mode:
authorbrustybee <beebeeb5k@gmail.com>2026-04-13 03:04:59 +0530
committerbrustybee <beebeeb5k@gmail.com>2026-04-13 03:04:59 +0530
commit1bb49481dbec223e68df4f60fa1d425525e16cff (patch)
tree66e87c01c39054b7abb51d04bfc50f63b201aaf4 /common/modules/matugen/templates/matugen-rofi.nix
parentf5b78ff561eff75c803ed1ef6e736a6c991cd135 (diff)
This is like that one dream you don't know how to describe
Diffstat (limited to 'common/modules/matugen/templates/matugen-rofi.nix')
-rw-r--r--common/modules/matugen/templates/matugen-rofi.nix31
1 files changed, 0 insertions, 31 deletions
diff --git a/common/modules/matugen/templates/matugen-rofi.nix b/common/modules/matugen/templates/matugen-rofi.nix
deleted file mode 100644
index 18be5c1..0000000
--- a/common/modules/matugen/templates/matugen-rofi.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-{
- config,
- lib,
- ...
-}:
-{
- config = lib.mkIf config.programs.rofi.enable {
- xdg.configFile = {
- "matugen/templates/rofi-colors.rasi" = {
- text = ''
- * {
- <* if {{ is_dark_mode }} *>
- bg: {{colors.surface.default.hex}};
- bg-alt: {{colors.surface_container.default.hex}};
- <* else *>
- bg: {{colors.surface_container.default.hex}};
- bg-alt: {{colors.surface_container_highest.default.hex}};
- <* endif *>
- fg: {{colors.on_surface.default.hex}};
- fg-dim: {{colors.on_surface_variant.default.hex}};
- accent: {{colors.primary.default.hex}};
- selected-bg: {{colors.primary.default.hex}};
- selected-fg: {{colors.on_primary.default.hex}};
- urgent: {{colors.error.default.hex}};
- outline: {{colors.outline.default.hex}};
- }
- '';
- };
- };
- };
-}