From ec3fa96850ff534a241f7ebf2e4cdc13efdf3891 Mon Sep 17 00:00:00 2001 From: sommerfeld Date: Thu, 14 May 2026 10:58:38 +0100 Subject: feat(waybar): snx-rs VPN status indicator + click toggle New custom/snx-vpn module sits next to custom/vpn (the wireguard one): - snx-vpn-status.sh shells out to `snxctl status` (timeout 2s) and maps the output to three states: down (grey strikethrough), connecting/MFA (amber), up (green). Tooltip shows the full status block when up. - snx-vpn-toggle.sh disconnects when up, runs snxctl-chromium detached when down (so SAML lands in the flatpak ungoogled-chromium without blocking waybar). Both paths refresh the module via SIGRTMIN+9. --- dot_config/waybar/config.jsonc | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'dot_config/waybar/config.jsonc') diff --git a/dot_config/waybar/config.jsonc b/dot_config/waybar/config.jsonc index e5ea09b..80eb560 100644 --- a/dot_config/waybar/config.jsonc +++ b/dot_config/waybar/config.jsonc @@ -10,6 +10,7 @@ "temperature", "custom/memory", "custom/vpn", + "custom/snx-vpn", "network#bond", "custom/dock", "battery", @@ -119,6 +120,14 @@ "on-click": "~/.config/waybar/vpn-toggle.sh", }, + "custom/snx-vpn": { + "exec": "~/.config/waybar/snx-vpn-status.sh", + "return-type": "json", + "interval": 5, + "signal": 9, + "on-click": "~/.config/waybar/snx-vpn-toggle.sh", + }, + "battery": { "format": "{icon} {capacity}%", "format-charging": "󰂄 {capacity}%", -- cgit v1.3.1