diff options
author | Daniel Weipert <code@drogueronin.de> | 2023-03-16 12:01:08 +0100 |
---|---|---|
committer | Daniel Weipert <code@drogueronin.de> | 2023-10-30 09:52:23 +0100 |
commit | 1ff9748e33817435420e480839ee7bab1a4684f3 (patch) | |
tree | 649b77f3e28c9fdf8e222a04899be09c21b3a9d4 | |
parent | 6fd1a77a4b98c1c770a1506105867a9942fc4a0b (diff) |
[waybar] add notify-send messages to wlan reconnect
-rw-r--r-- | .config/waybar/config | 3 | ||||
-rwxr-xr-x | bin/iwctl-re | 4 |
2 files changed, 6 insertions, 1 deletions
diff --git a/.config/waybar/config b/.config/waybar/config index d65a5e5..d32c360 100644 --- a/.config/waybar/config +++ b/.config/waybar/config @@ -38,7 +38,8 @@ "format": "{ipaddr}", "format-disconnected": "Offline", "interval": 1, - "on-click-right": "~/bin/iwctl-re" + "on-click-right": "~/bin/iwctl-re", + "on-click-middle": "notify-send 'WLAN Reload' 'Restart iwd.service'; sudo systemctl restart iwd.service" }, "battery": { "format": "E {capacity}%", diff --git a/bin/iwctl-re b/bin/iwctl-re index b79cee2..4343b30 100755 --- a/bin/iwctl-re +++ b/bin/iwctl-re @@ -1,5 +1,9 @@ #!/bin/zsh +notify-send "WLAN Reload" "Disconnect" iwctl station wlan0 disconnect + sleep 5 + +notify-send "WLAN Reload" "Reconnect" iwctl --passphrase $(pass router/passphrase) station wlan0 connect "$(pass router/name)" $(pass router/security) |