13 lines
231 B
Bash
Executable File
13 lines
231 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# credits
|
|
# https://linuxconfig.org/polybar-a-better-wm-panel-for-your-linux-system
|
|
|
|
IP=$(dig +short myip.opendns.com @resolver1.opendns.com)
|
|
|
|
if pgrep -x openvpn > /dev/null; then
|
|
echo VPN: $IP
|
|
else
|
|
echo $IP
|
|
fi
|