aboutsummaryrefslogtreecommitdiff
path: root/dotfiles/.local/bin/i3barweather
diff options
context:
space:
mode:
Diffstat (limited to 'dotfiles/.local/bin/i3barweather')
-rwxr-xr-xdotfiles/.local/bin/i3barweather18
1 files changed, 18 insertions, 0 deletions
diff --git a/dotfiles/.local/bin/i3barweather b/dotfiles/.local/bin/i3barweather
new file mode 100755
index 0000000..0ae6d3c
--- /dev/null
+++ b/dotfiles/.local/bin/i3barweather
@@ -0,0 +1,18 @@
+#!/bin/bash
+
+location="Saint Petersburg"
+
+if [[ "$location" != "" ]]
+then
+ location="~${location// /+}"
+fi
+
+forecast=$(curl -s wttr.in/$location?format=1)
+
+if [[ ${#forecast} -gt 30 ]]
+then
+ exit
+fi
+
+echo $forecast
+