mirror of
https://github.com/elenapan/dotfiles.git
synced 2025-12-28 00:04:57 +08:00
9 lines
258 B
Bash
Executable file
9 lines
258 B
Bash
Executable file
# Replace with your own interface name here
|
|
VPN_IF="tap"
|
|
VPN="$(ifconfig -a | grep $VPN_IF)"
|
|
|
|
if [ ${#VPN} -eq "0" ]; then
|
|
notify-send "VPN status:" "Disabled" --icon=dialog-information
|
|
else
|
|
notify-send "VPN status:" "Enabled" --icon=dialog-information
|
|
fi
|