diff options
Diffstat (limited to 'config/hyprland/waybar')
-rw-r--r-- | config/hyprland/waybar/config.jsonc | 6 | ||||
-rw-r--r-- | config/hyprland/waybar/schemes/base16.css | 11 |
2 files changed, 12 insertions, 5 deletions
diff --git a/config/hyprland/waybar/config.jsonc b/config/hyprland/waybar/config.jsonc index 72a6872..816a851 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", @@ -63,7 +63,7 @@ }, "clock": { "format": "{:%H:%M}", - "format-alt": "{:%R %A %d %B}", + "format-alt": "{:(%R) %A %d %B}", "interval": 1, }, "tray": { 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; |