diff options
| author | tslil <tslil@posteo.de> | 2026-04-13 20:34:43 +0100 |
|---|---|---|
| committer | tslil <tslil@posteo.de> | 2026-04-13 20:35:31 +0100 |
| commit | b7f021208e13e4396fd196c41392e52e47a27ef3 (patch) | |
| tree | 223b22908ca756ddbaeee48697349b3a618b07bf /waybar | |
| parent | 92308157474ffa5ee966ce7ae2f875f38cb8d445 (diff) | |
[waybar] [machi] more compact status, stupid hack for keyboard layout
Diffstat (limited to 'waybar')
| -rw-r--r-- | waybar/config.jsonc | 42 |
1 files changed, 24 insertions, 18 deletions
diff --git a/waybar/config.jsonc b/waybar/config.jsonc index 7831670..7a6ef94 100644 --- a/waybar/config.jsonc +++ b/waybar/config.jsonc @@ -9,12 +9,12 @@ "modules-center": [ ], "modules-right": [ - "network#vpn", "network#wifi", + "network#vpn", "pulseaudio", "backlight", - "temperature", "battery", + "temperature", "clock", "tray", ], @@ -26,43 +26,49 @@ "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": "| {icon} {percent}%", - "format-icons": ["", "", "", "", "", "", "", "", ""] + "format": "|{percent}% {icon} ", + "format-icons": ["", "", "", "", "", "", "", "", ""], + "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": { "interface": "wg0-mullvad", - "format-disconnected": "| VPN ⚠", - "format": "", + "format-disconnected": "V-", + "format": "V+", + "tooltip-format": "VPN UP", + "tooltip-format-disconnected": "VPN DOWN" }, "network#wifi": { "interface": "wlp1s0", - "format-wifi": "| {essid}", - "tooltip-format": "{ifname}: {ipaddr}/{cidr}", + "format-wifi": "|W+", + "format-disconnected": "|W-", + "tooltip-format": "{essid} @ {ifname}: {ipaddr}/{cidr}", + "tooltip-format-disconnected": "WIFI DISCONNECTED" }, "pulseaudio": { "scroll-step": 1, - "format": "| {volume}% {icon} {format_source} ", - "format-bluetooth": "{volume}% {icon} {format_source}", - "format-bluetooth-muted": " {icon} {format_source}", - "format-muted": " {format_source}", + "format": "|{volume}% {icon} ", + "format-bluetooth": "{volume}% {icon} ", + "format-bluetooth-muted": " {icon} ", + "format-muted": " ", "format-source": "", "format-source-muted": "", "format-icons": { |
