From 5eee5b44924bf9079a67d5bc7612bfad56ddeed3 Mon Sep 17 00:00:00 2001 From: Yaroslav Date: Fri, 17 Jan 2020 19:14:34 +0300 Subject: config restructuring and cleanup --- dotfiles/.local/bin/i3barweather | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 dotfiles/.local/bin/i3barweather (limited to 'dotfiles/.local/bin/i3barweather') 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 + -- cgit v1.2.3