diff options
| author | 2026-04-21 01:24:41 +0100 | |
|---|---|---|
| committer | 2026-04-21 01:24:41 +0100 | |
| commit | ab6b0d4f1393b45cefbe00e0e3d6f481a40d0022 (patch) | |
| tree | 132595e312ac4d6054405d8c40c41e8feb531453 /dot_config/waybar/config.jsonc | |
| parent | 10a86df06d581174635e15f9730a8241dc2a72e5 (diff) | |
| download | dotfiles-ab6b0d4f1393b45cefbe00e0e3d6f481a40d0022.tar.gz dotfiles-ab6b0d4f1393b45cefbe00e0e3d6f481a40d0022.tar.bz2 dotfiles-ab6b0d4f1393b45cefbe00e0e3d6f481a40d0022.zip | |
waybar: show memory used/free and wifi SSID + signal + throughput
Diffstat (limited to 'dot_config/waybar/config.jsonc')
| -rw-r--r-- | dot_config/waybar/config.jsonc | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/dot_config/waybar/config.jsonc b/dot_config/waybar/config.jsonc index d37051c..568738f 100644 --- a/dot_config/waybar/config.jsonc +++ b/dot_config/waybar/config.jsonc @@ -31,9 +31,9 @@ }, "memory": { - "format": "MEM {}%", + "format": "MEM {used:0.1f}G used / {avail:0.1f}G free", "interval": 10, - "tooltip-format": "{used:0.1f}G / {total:0.1f}G", + "tooltip-format": "{used:0.1f}G used · {avail:0.1f}G free · {total:0.1f}G total ({percentage}%)", }, "temperature": { @@ -42,10 +42,12 @@ }, "network": { - "format-wifi": "{essid} ({signalStrength}%)", - "format-ethernet": "{ifname}", + "interval": 2, + "format-wifi": "{essid} {signalStrength}% ↓{bandwidthDownBits} ↑{bandwidthUpBits}", + "format-ethernet": "↓{bandwidthDownBits} ↑{bandwidthUpBits}", "format-disconnected": "disconnected", - "tooltip-format": "{ifname}: {ipaddr}/{cidr}", + "tooltip-format-wifi": "{essid} ({signalStrength}%) · {frequency} MHz\n{ifname}: {ipaddr}/{cidr}", + "tooltip-format-ethernet": "{ifname}: {ipaddr}/{cidr}", }, "battery": { |
