8 lines
130 B
Bash
8 lines
130 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if ! pgrep "openvpn" &>/dev/null || ! ip link | grep -q tun; then
|
||
|
echo "$ICO_VPN_OFF "
|
||
|
else
|
||
|
echo "$ICO_VPN_ON "
|
||
|
fi
|