diff options
author | Daniel Weipert <code@drogueronin.de> | 2023-02-06 16:32:20 +0100 |
---|---|---|
committer | Daniel Weipert <code@drogueronin.de> | 2023-10-30 09:52:23 +0100 |
commit | e57d8077cca60fc32ead0277f4807d90a96cb715 (patch) | |
tree | f1502d07a3c1569f5e3153f0c4ced30d9949d6a4 | |
parent | aac699069c97fe85581fca4950bec5c7bddc7e2d (diff) |
[iwctl+waybar] add wlan reconnect script
-rw-r--r-- | .config/waybar/config | 3 | ||||
-rwxr-xr-x | bin/iwctl-re | 5 |
2 files changed, 7 insertions, 1 deletions
diff --git a/.config/waybar/config b/.config/waybar/config index a3e2fa7..d65a5e5 100644 --- a/.config/waybar/config +++ b/.config/waybar/config @@ -37,7 +37,8 @@ "network": { "format": "{ipaddr}", "format-disconnected": "Offline", - "interval": 1 + "interval": 1, + "on-click-right": "~/bin/iwctl-re" }, "battery": { "format": "E {capacity}%", diff --git a/bin/iwctl-re b/bin/iwctl-re new file mode 100755 index 0000000..b79cee2 --- /dev/null +++ b/bin/iwctl-re @@ -0,0 +1,5 @@ +#!/bin/zsh + +iwctl station wlan0 disconnect +sleep 5 +iwctl --passphrase $(pass router/passphrase) station wlan0 connect "$(pass router/name)" $(pass router/security) |