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
#!/bin/bash | |
# Original source: https://raw.githubusercontent.com/kaihendry/dotfiles/master/bin/dwm_status | |
# Network speed stuff stolen from http://linuxclues.blogspot.sg/2009/11/shell-script-show-network-speed.html | |
print_wifi() { | |
ip=$(ip route get 8.8.8.8 2>/dev/null|grep -Eo 'src [0-9.]+'|grep -Eo '[0-9.]+') | |
if=wlan0 | |
while IFS=$': \t' read -r label value | |
do | |
case $label in SSID) SSID=$value |