diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-04-08 21:35:50 +0200 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-04-08 21:35:50 +0200 |
commit | dcb180b905f743899e0df2822c25d8ee1eec09a8 (patch) | |
tree | e27ea487efe8bc030b494f6119693a29a679ca63 | |
parent | 7e7c63e572af193ede5baebb80d23b52dfb26b76 (diff) |
added intervals and clock config and cleanup
-rw-r--r-- | config/hyprland/waybar/config.jsonc | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/config/hyprland/waybar/config.jsonc b/config/hyprland/waybar/config.jsonc index 3ff217a..38496a7 100644 --- a/config/hyprland/waybar/config.jsonc +++ b/config/hyprland/waybar/config.jsonc @@ -26,20 +26,27 @@ "format": "{icon} {volume}%", "format-icons": { "default": ["奄", "奔", "墳"] - } + }, }, "network": { "tooltip": false, "format-wifi": " {essid}", - "format-ethernet": "" + "format-ethernet": "", }, "cpu": { "tooltip": false, - "format": " {}%" + "format": " {usage:2}%", + "interval": 3, }, "memory": { "tooltip": false, - "format": " {used}G" + "format": " {used:.2f}G", + "interval": 3, + }, + "clock": { + "format": "{:%H:%M}", + "format-alt": " {:%A, %B %d, %Y (%R)}", + "interval": 1, }, "tray": { "spacing": 5, |