diff options
-rw-r--r-- | config/hyprland/waybar/config.jsonc | 4 | ||||
-rw-r--r-- | config/hyprland/waybar/schemes/base16.css | 11 |
2 files changed, 11 insertions, 4 deletions
diff --git a/config/hyprland/waybar/config.jsonc b/config/hyprland/waybar/config.jsonc index c3ecf2c..e0289c8 100644 --- a/config/hyprland/waybar/config.jsonc +++ b/config/hyprland/waybar/config.jsonc @@ -1,7 +1,7 @@ { "layer": "top", - "modules-left": ["battery", "wlr/workspaces", "mpd"], - "modules-center": ["clock"], + "modules-left": ["battery", "clock", "wlr/workspaces", "mpd"], + "modules-center": ["hyprland/window"], "modules-right": ["network", "pulseaudio", "temperature", "cpu", "custom/memory", "tray"], "wlr/workspaces": { "on-click": "activate", diff --git a/config/hyprland/waybar/schemes/base16.css b/config/hyprland/waybar/schemes/base16.css index 170a72c..eced638 100644 --- a/config/hyprland/waybar/schemes/base16.css +++ b/config/hyprland/waybar/schemes/base16.css @@ -38,6 +38,7 @@ window#waybar.PCSX2 #window { } #mpd, #battery, +#window, #network, #pulseaudio, #temperature, #cpu, #custom-memory { margin-left: 8px; padding-left: 16px; @@ -45,8 +46,9 @@ window#waybar.PCSX2 #window { border-radius: 26px; } -#workspaces, #mpd, #battery, -#network, #pulseaudio, #temperature, #cpu, #custom-memory, #clock, #tray { +#workspaces, #mpd, #battery, #clock, +#window, +#network, #pulseaudio, #temperature, #cpu, #custom-memory, #tray { border: solid @background 2px; margin-top: 4px; margin-bottom: 2px; @@ -105,6 +107,11 @@ window#waybar.PCSX2 #window { border-color: @color4; } +#window { + color: @background; + background: @color4; +} + #network { color: @background; background: @color5; |