summaryrefslogtreecommitdiff
path: root/.i3/scripts/i3weather
diff options
context:
space:
mode:
Diffstat (limited to '.i3/scripts/i3weather')
-rwxr-xr-x.i3/scripts/i3weather16
1 files changed, 16 insertions, 0 deletions
diff --git a/.i3/scripts/i3weather b/.i3/scripts/i3weather
new file mode 100755
index 0000000..7aee4f3
--- /dev/null
+++ b/.i3/scripts/i3weather
@@ -0,0 +1,16 @@
+#!/bin/bash
+
+[[ $BLOCK_BUTTON = "1" ]] && st -e w3m wttr.in/~london
+
+ping -q -w 1 -c 1 `ip r | grep default | cut -d ' ' -f 3` >/dev/null || exit
+
+### This is only if your location isn't automatically detected, otherwise you can leave it blank.
+loc="hatfield"
+location=${loc// /+}
+
+curl wttr.in/~$location > ~/.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 "°"}'
+