Use monospace alias for fonts, remove menu clutter
This commit is contained in:
@ -1,16 +1,20 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
disconnected="/"
|
||||
disconnected2="\\"
|
||||
wireless_connected=""
|
||||
ethernet_connected=""
|
||||
disconnect1="/"
|
||||
disconnect2="\\"
|
||||
wconnected=""
|
||||
econnected=""
|
||||
|
||||
ID="$(ip link | awk '/state UP/ {print $2}')"
|
||||
id="$(ip link | awk '/state UP/ {print $2}')"
|
||||
|
||||
while true; do
|
||||
if (ping -c 1 archlabslinux.com || ping -c 1 google.com || ping -c 1 bitbucket.org || ping -c 1 github.com || ping -c 1 sourceforge.net) >/dev/null 2>&1; then
|
||||
[[ $ID == e* ]] && { echo "$ethernet_connected"; sleep 25; } || { echo "$wireless_connected"; sleep 25; }
|
||||
if ping -c 1 archlabslinux.com >/dev/null 2>&1 || ping -c 1 archlinux.org >/dev/null 2>&1; then
|
||||
[[ $id == e* ]] && echo "$econnected" || echo "$wconnected"
|
||||
sleep 25
|
||||
else
|
||||
echo "$disconnected"; sleep 0.6; echo "$disconnected2"; sleep 0.6
|
||||
echo "$disconnect1" # /
|
||||
sleep 0.6
|
||||
echo "$disconnect2" # \
|
||||
sleep 0.6
|
||||
fi
|
||||
done
|
||||
|
Reference in New Issue
Block a user