mirror of
https://github.com/alrayyes/dotfiles/
synced 2023-11-14 15:56:30 +00:00
20 lines
455 B
Bash
Executable File
20 lines
455 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
###
|
|
# Switch wireguard vpns up/down
|
|
###
|
|
|
|
STATUS="$(nmcli device status | grep -c $1)"
|
|
|
|
case $STATUS in
|
|
1)
|
|
wg-quick down "$1"
|
|
notify-send.py -a wireguard --replaces-process wireguard-status-"$1" -i network-vpn-offline-symbolic "Wireguard $1" "Connection down" &
|
|
;;
|
|
*)
|
|
wg-quick up "$1"
|
|
notify-send.py -a wireguard --replaces-process wireguard-status-"$1" -i network-vpn-symbolic "Wireguard $1" "Connection up" &
|
|
;;
|
|
esac
|
|
|