diff options
author | InigoGutierrez <inigogf.95@gmail.com> | 2019-03-12 20:29:37 +0100 |
---|---|---|
committer | InigoGutierrez <inigogf.95@gmail.com> | 2019-03-12 20:29:37 +0100 |
commit | 02308076e833029cb84467e1773aacbac8ae1f0a (patch) | |
tree | 33135f924a98b14e4e328b08a4d2a07dd96b4ffc /i3blocks/i3internet.sh | |
parent | 7271354955d686d5ea7e698542f7afb4864746ee (diff) | |
download | scripts-02308076e833029cb84467e1773aacbac8ae1f0a.tar.gz scripts-02308076e833029cb84467e1773aacbac8ae1f0a.zip |
Simple changes to some scripts.
Diffstat (limited to 'i3blocks/i3internet.sh')
-rwxr-xr-x | i3blocks/i3internet.sh | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/i3blocks/i3internet.sh b/i3blocks/i3internet.sh index ab26611..1523c9b 100755 --- a/i3blocks/i3internet.sh +++ b/i3blocks/i3internet.sh @@ -11,14 +11,17 @@ if [ $wstatus = "down" ]; then wifi="❌" else # with IP - wifi="$(nmcli | grep "wlp2s0: conectado to " | cut -d' ' -f4-) ($(ip addr show wlp2s0 | grep "inet " | cut -d' ' -f6)) ($(grep "^\s*w" /proc/net/wireless | awk '{print int($3 * 100 / 70)"%"}'))" - # no IP - #wifi="$(nmcli | grep "wlp2s0: conectado to " | cut -d' ' -f4-) ($(grep "^\s*w" /proc/net/wireless | awk '{print int($3 * 100 / 70)"%"}'))" + #wifi="✔️$(nmcli | grep "wlp2s0: connected to " | cut -d' ' -f4-) ($(ip addr show wlp2s0 | grep "inet " | cut -d' ' -f6)) ($(grep "^\s*w" /proc/net/wireless | awk '{print int($3 * 100 / 70)"%"}'))" + # with name + wifi="✔️ $(nmcli | grep "wlp2s0: connected to " | cut -d' ' -f4-) ($(grep "^\s*w" /proc/net/wireless | awk '{print int($3 * 100 / 70)"%"}'))" fi if [ $estatus = "down" ]; then en="❌" else - en=$(ip addr show enp3s0 | grep "inet " | cut -d' ' -f6) + # with IP + #en=$(ip addr show enp3s0 | grep "inet " | cut -d' ' -f6) + # no IP + en=✔️ fi -echo "📶$wifi 🌐$en" +echo "📶$wifi 🌐$en" |