From e8abbff15e4b1196ed0ad1e30eda8bea9c8c2433 Mon Sep 17 00:00:00 2001 From: kenji Date: Sat, 27 Dec 2025 11:14:39 -0600 Subject: [PATCH] fix: waybar colors --- apps/matugen/config.toml | 2 +- apps/waybar/style.nix | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/matugen/config.toml b/apps/matugen/config.toml index f28c37a..37944ca 100644 --- a/apps/matugen/config.toml +++ b/apps/matugen/config.toml @@ -13,5 +13,5 @@ post_hook = "hyprctl reload" [templates.waybar] input_path = "~/.config/matugen/templates/waybar" -output_path = "~/.config/waybar/colors.conf" +output_path = "~/.config/waybar/matugen.css" post_hook = "killall -SIGUSR2 .waybar-wrapped" diff --git a/apps/waybar/style.nix b/apps/waybar/style.nix index fc1f405..7fa7bfa 100644 --- a/apps/waybar/style.nix +++ b/apps/waybar/style.nix @@ -1,10 +1,10 @@ {config, ...}: { programs.waybar = { style = '' - @import "matugen.css" + @import "matugen.css"; * { background-color: @background; - color: @foreground; + color: @on_surface; border: none; border-radius: 0; @@ -81,7 +81,7 @@ } #custom-screenrecording-indicator.active { - color: #a55555; + color: @on_secondary; } ''; };