i3blocks scripts added

This commit is contained in:
Luke Smith
2018-04-22 17:39:23 -07:00
parent 84557167e6
commit cec92894fc
8 changed files with 51 additions and 4 deletions

12
.scripts/i3weather Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
[[ $BLOCK_BUTTON = "1" ]] && st -e w3m wttr.in
ping -q -w 1 -c 1 `ip r | grep default | cut -d ' ' -f 3` >/dev/null || exit
curl wttr.in > ~/.weatherreport
echo -n ☔ $(cat ~/.weatherreport | sed -n 16p | sed -e 's/[^m]*m//g' | grep -o "[0-9]*%" | sort -n | sed -e '$!d')
cat ~/.weatherreport | sed -n 13p | sed -e 's/[^m]*m//g;s/[^0-9]/ /g;s/ /\n/g;/^s*$/d' | grep [0-9] | sort -n | sed -e 1b -e '$!d' | tr '\n' ' ' | awk '{print " ❄️",$1 "°","☀️",$2 "°"}'