diff --git a/home-manager/home.nix b/home-manager/home.nix index 65aa636..447ba3e 100644 --- a/home-manager/home.nix +++ b/home-manager/home.nix @@ -369,7 +369,7 @@ in width = SCREEN_WIDTH - 10; modules-left = [ "network" ]; modules-right = [ "pulseaudio" ]; - modules-center = ["custom/weather"]; + modules-center = ["custom/gruvbox", "custom/nord", "custom/solarized"]; "network" = { interface = "enp42s0"; interval = 10; @@ -377,13 +377,17 @@ in format-ethernet = "{ifname}: {ipaddr} "; format-disconnected = "No Connection... "; }; - "custom/weather" = { - format = "{}°"; - tooltip = true; - interval = 3600; - exec = "wttrbar --ampm --location egbb"; - return-type = "json"; - on-click = "${TERMINAL} --hold curl wttr.in"; + "custom/gruvbox" = { + on-click = "$HOME/scripts/theme-switcher.sh gruvbox ${MODE}"; + format = ""; + }; + "custom/nord" = { + on-click = "$HOME/scripts/theme-switcher.sh nord ${MODE}"; + format = ""; + }; + "custom/solarized" = { + on-click = "$HOME/scripts/theme-switcher.sh solarized ${MODE}"; + format = ""; }; "pulseaudio" = { format = "{icon} {volume}%"; diff --git a/home-manager/themes/wallpaper.png b/home-manager/themes/wallpaper.png index d8eb011..a551544 100644 Binary files a/home-manager/themes/wallpaper.png and b/home-manager/themes/wallpaper.png differ