diff options
Diffstat (limited to '.config/waybar/config.json')
-rw-r--r-- | .config/waybar/config.json | 41 |
1 files changed, 37 insertions, 4 deletions
diff --git a/.config/waybar/config.json b/.config/waybar/config.json index 581d763..8d32834 100644 --- a/.config/waybar/config.json +++ b/.config/waybar/config.json @@ -5,20 +5,20 @@ "reload_style_on_change": true, "modules-left": [ "hyprland/workspaces", - "custom/vanity", "hyprland/window" ], "modules-right": [ + "custom/test", "custom/recording", "custom/tasks", "custom/music", "custom/packages", "custom/news", "custom/torrent", + "cpu", "custom/memory", "custom/forecast", "custom/mailbox", - "custom/nettraf", "custom/microphone", "custom/volume", "custom/clock", @@ -33,9 +33,12 @@ "format": "{icon}" }, - "custom/vanity" : { + "custom/test" : { "tooltip": false, - "format": "[]=" + "format": "{}", + "signal": 101, + "exec" : "/home/awy/test.sh", + "return-type": "json" }, "custom/recording" : { @@ -105,6 +108,18 @@ "on-click-backward": "BLOCK_BUTTON=8 sb-torrent" }, + "cpu" : { + "tooltip": false, + "format": "{icon} {usage}%", + "interval": 1, + "states": { + "high": 70, + "mid": 40, + "low": 0 + }, + "format-icons": ["", "", ""] + }, + "custom/memory" : { "tooltip": false, "format": "{}", @@ -153,6 +168,24 @@ "on-click-backward": "BLOCK_BUTTON=8 sb-mailbox" }, + "network#usage": { + "format": "{bandwidthDownBytes} {bandwidthUpBytes}", + "interval" : 1, + "tooltip-format": "{ifname}" + }, + + "network#interface": { + "format": "{ifname}", + "format-wifi": "{essid} ({signalStrength}%) ", + "format-ethernet": "{ifname} ", + "format-disconnected": "", + "tooltip-format": "{ifname}", + "tooltip-format-wifi": "{essid} ({signalStrength}%) ", + "tooltip-format-ethernet": "{ifname} ", + "tooltip-format-disconnected": "Disconnected", + //"max-length": 50 + }, + "custom/nettraf" : { "tooltip": false, "format": "{}", |