blob: 837fbf322e08612fbc62aea4d0011edaf44aa3f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
case $(hostname -s) in
mother|po-rbo) ping="ping -c1 -w1 9.9.9.9" ;;
mars) ping="ping -c1 -t1 9.9.9.9" ;;
esac
if ifconfig | grep -E '^tun|^vpn|^wg' >/dev/null 2>&1; then
echo -n " "
fi
if ! $ping >/dev/null 2>&1; then
echo "ﰸ "
return
fi
echo " "
|