blob: 7a95f70b9401ad81927b873f06c269ffd0965f48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
#!/bin/sh
os="$(uname)"
tmpfile="/tmp/os"
if ! [ -e "/tmp/os" ]; then
if [ "$os" = "Linux" ]; then
grep "Artix" /etc/issue >/dev/null 2>&1 && os=1 || os=2
elif [ "$os" = "FreeBSD" ]; then
os=3
else
echo "unknown OS"
exit 1
fi
echo $os >$tmpfile
else
$os=$(cat $tmpfile)
fi
case $os in
1)
if_main="eth1"
if_alt="eth0"
if grep up "/sys/class/net/$if_main/operstate" >/dev/null 2>&1; then
:
elif grep up "/sys/class/net/$if_alt/operstate" >/dev/null 2>&1; then
if_main=$if_alt
else
exit
fi
;;
2)
if_main="enx4ce1734c425a"
if_alt="wlp1s0"
if grep up "/sys/class/net/$if_main/operstate" >/dev/null 2>&1; then
:
elif grep up "/sys/class/net/$if_alt/operstate" >/dev/null 2>&1; then
if_main=$if_alt
else
exit
fi
;;
3)
if_main="em0"
if_alt="wlan0"
exit
;;
esac
echo '${color grey}Net'
# ${hr}${if_up enx4ce1734c425a}
# ${color grey}LAN IP: ${font1}${color white}${addr enx4ce1734c425a}${font}
# ${color grey}---------
# ${color grey}VPN IP: ${font1}${color white}${addr proton0}${font}
# ${color grey}---------
# ${color grey}Public IP: ${color white}${font1}${execi 300 curl -s https://ifconfig.me || echo No Address}${font}${color grey}
# ${hr}
# ${color grey}Down: ${color white}${font1}${downspeed enx4ce1734c425a} ${font}${color grey}- Up: ${color white}${font1}${upspeed enx4ce1734c425a}${font}
# ${color grey}Down: ${color white}${downspeedgraph enx4ce1734c425a bfbfbf c0c0c0 125829120}
# ${color grey}Up: ${color white}${upspeedgraph enx4ce1734c425a bfbfbf c0c0c0 125829120}
# ${hr}
# ${color grey}DNS:
# ${font1}${color white}${nameserver 0}${font}
# ${font1}${color white}${nameserver 1}${font}
# ${hr}${endif}
|