diff options
| author | tslil <tslil@posteo.de> | 2026-06-20 13:25:18 +0100 |
|---|---|---|
| committer | tslil <tslil@posteo.de> | 2026-06-20 13:26:42 +0100 |
| commit | da61fa5ed92de1e3031580167121cc138357b78d (patch) | |
| tree | 249982e62fb290ce818ae195d2cb4f5455e00a7f /waybar/config.jsonc | |
| parent | 6e8f61f044a7b7c79ea480edd7dfbc31e17a48bb (diff) | |
[waybar] adapt to parameterised machi_status, use vertical separators, fix some icons
Diffstat (limited to 'waybar/config.jsonc')
| -rw-r--r-- | waybar/config.jsonc | 44 |
1 files changed, 28 insertions, 16 deletions
diff --git a/waybar/config.jsonc b/waybar/config.jsonc index 5b86b96..6382e90 100644 --- a/waybar/config.jsonc +++ b/waybar/config.jsonc @@ -4,7 +4,10 @@ "spacing": 0, "margin-bottom": 0, "modules-left": [ - "custom/machi" + "custom/machi_W", + "custom/machi_P", + "custom/machi_F", + "custom/machi_T" ], "modules-center": [ ], @@ -18,35 +21,44 @@ "clock", "tray", ], - "custom/machi": { - "exec": "machi_status" + "custom/machi_W": { + "exec": "machi_status W" + }, + "custom/machi_P": { + "exec": "machi_status P" + }, + "custom/machi_F": { + "exec": "machi_status F" + }, + "custom/machi_T": { + "exec": "machi_status T", }, "tray": { "icon-size": 32, "spacing": 10 }, "clock": { - "format": "|{:%a %H:%M %d/%m/%Y}", + "format": "{:%a %H:%M %d/%m/%Y}", "tooltip-format": "<tt><big>{calendar}</big></tt>", }, "temperature": { "interval": 10, "hwmon-path": "/sys/class/hwmon/hwmon5/temp1_input", - "format": "|{temperatureC}°C", + "format": "{temperatureC}°C", "tooltip": false, }, "backlight": { - "format": "|{percent}% {icon} ", + "format": "L{percent}%", "format-icons": ["\ue39b", "\ue3c8", "\ue3ca", "\ue3cd", "\ue3ce", "\ue3cf", "\ue3d1", "\ue3d3", "\ue38d"], "tooltip": false }, "battery": { "interval": 10, - "format": "|U{capacity}%", + "format": "U{capacity}%", "format-plugged": "", - "format-not-charging": "|N{capacity}%", - "format-discharging": "|D{capacity}% {time}", - "format-charging": "|C{capacity}% {time}", + "format-not-charging": "N{capacity}%", + "format-discharging": "D{capacity}% {time}", + "format-charging": "C{capacity}% {time}", "format-time": "{H}h{M}m", }, "network#vpn": { @@ -58,17 +70,17 @@ }, "network#wifi": { "interface": "wlp1s0", - "format": "|W-", - "format-wifi": "|W+", + "format": "W-", + "format-wifi": "W+", "tooltip-format": "{essid} @ {ifname}: {ipaddr}/{cidr}", "tooltip-format-disconnected": "WIFI DISCONNECTED" }, "pulseaudio": { "scroll-step": 1, - "format": "|{volume}% {icon} ", - "format-bluetooth": "|{volume}% {icon} ", - "format-bluetooth-muted": "| {icon} ", - "format-muted": "|", + "format": "{volume}% {icon} ", + "format-bluetooth": "{volume}% {icon} ", + "format-bluetooth-muted": "🔇 {icon} ", + "format-muted": "🔇", "format-source": "", "format-source-muted": "", "format-icons": { |
