diff options
| author | 2026-05-13 13:43:28 +0100 | |
|---|---|---|
| committer | 2026-05-13 13:43:28 +0100 | |
| commit | 17d039286fe439390b938616d8b00b464d16ccce (patch) | |
| tree | ecbf138bacc66fe0d6595fcf5140676d8d4564d2 /dot_config/waybar/config.jsonc | |
| parent | 40dec402b9c03e0d9a75cb8f2c45367032735d83 (diff) | |
| download | dotfiles-17d039286fe439390b938616d8b00b464d16ccce.tar.gz dotfiles-17d039286fe439390b938616d8b00b464d16ccce.tar.bz2 dotfiles-17d039286fe439390b938616d8b00b464d16ccce.zip | |
style(waybar): tighten right cluster — tray rightmost, drop disk, compact MEM, drop LOAD label
- modules-right: tray moved past clock to the rightmost slot;
disk dropped (used% on btrfs is ambiguous and the value rarely moves)
- custom/memory: drop the available-side readout, output 'MEM 3.2G 40%'
instead of 'MEM 3.2G (40%) / 4.5G (56%)'
- cpu: drop the 'LOAD' literal — bare '{load:0.2f}' next to the usage%
is unambiguous in context
The disk module config block is left intact for easy reactivation.
Diffstat (limited to 'dot_config/waybar/config.jsonc')
| -rw-r--r-- | dot_config/waybar/config.jsonc | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/dot_config/waybar/config.jsonc b/dot_config/waybar/config.jsonc index 93180cb..275d795 100644 --- a/dot_config/waybar/config.jsonc +++ b/dot_config/waybar/config.jsonc @@ -9,7 +9,6 @@ "cpu", "temperature", "custom/memory", - "disk", "network#bond", "battery", "privacy", @@ -18,8 +17,8 @@ "idle_inhibitor", "custom/notifications", "custom/thunderbird", - "tray", "clock", + "tray", ], "sway/workspaces": { @@ -31,11 +30,11 @@ }, "cpu": { - "format": "CPU {usage}% LOAD {load:0.2f}", - "format-low": "CPU <span color='#b8bb26'>{usage}%</span> LOAD {load:0.2f}", - "format-medium": "CPU <span color='#fabd2f'>{usage}%</span> LOAD {load:0.2f}", - "format-high": "CPU <span color='#fe8019'>{usage}%</span> LOAD {load:0.2f}", - "format-critical": "CPU <span color='#fb4934'>{usage}%</span> LOAD {load:0.2f}", + "format": "CPU {usage}% {load:0.2f}", + "format-low": "CPU <span color='#b8bb26'>{usage}%</span> {load:0.2f}", + "format-medium": "CPU <span color='#fabd2f'>{usage}%</span> {load:0.2f}", + "format-high": "CPU <span color='#fe8019'>{usage}%</span> {load:0.2f}", + "format-critical": "CPU <span color='#fb4934'>{usage}%</span> {load:0.2f}", "states": { "low": 0, "medium": 30, |
