summaryrefslogtreecommitdiff
path: root/common/modules/matugen/templates/matugen-waybar.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-waybar.nix
parentf5b78ff561eff75c803ed1ef6e736a6c991cd135 (diff)
This is like that one dream you don't know how to describe
Diffstat (limited to 'common/modules/matugen/templates/matugen-waybar.nix')
-rw-r--r--common/modules/matugen/templates/matugen-waybar.nix35
1 files changed, 0 insertions, 35 deletions
diff --git a/common/modules/matugen/templates/matugen-waybar.nix b/common/modules/matugen/templates/matugen-waybar.nix
deleted file mode 100644
index acdb788..0000000
--- a/common/modules/matugen/templates/matugen-waybar.nix
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- config,
- lib,
- ...
-}:
-{
- config = lib.mkIf config.beeMods.mango.waybar {
- xdg.configFile."matugen/templates/waybar.css" = {
- text = ''
- ${lib.optionalString (config.beeMods.mango.window.blur.enable) ''
- <* if {{ is_dark_mode }} *>
- @define-color bg_panel rgba({{colors.surface.default.red}}, {{colors.surface.default.green}}, {{colors.surface.default.blue}}, 0.9);
- <* else *>
- @define-color bg_panel rgba({{colors.surface_container.default.red}}, {{colors.surface_container.default.green}}, {{colors.surface_container.default.blue}}, 0.9);
- <* endif *>
- ''}
- ${lib.optionalString (!config.beeMods.mango.window.blur.enable) ''
- <* if {{ is_dark_mode }} *>
- @define-color bg_panel {{colors.surface.default.hex}};
- <* else *>
- @define-color bg_panel {{colors.surface_container.default.hex}};
- <* endif *>
- ''}
-
- @define-color bg_base transparent;
- @define-color border_color {{colors.primary.default.hex}};
- @define-color text_main {{colors.primary.default.hex}};
- @define-color text_dark {{colors.surface_container_highest.default.hex}};
- @define-color alert_urgent {{colors.error.default.hex}};
- @define-color alert_minimized {{colors.error_container.default.hex}};
- @define-color alert_critical {{colors.on_error_container.default.hex}};
- '';
- };
- };
-}