Created
March 2, 2018 18:28
-
-
Save Dobbie03/4c2a66c6d35721f501656a00a0db5260 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
online=$(ip addr | grep "state UP" | cut -d ":" -f2) | |
#connected="" | |
#offline="" | |
connected="" | |
offline="" | |
if [[ "$online" ]]; then | |
echo " %{F#23EFDC}${connected} " | |
else | |
echo " %{F#23EFDC}${offline} "; sleep 1; echo " %{F#FDEE7B}${offline} " | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment