diff options
| author | 大和でなり <daenarii@protonmail.com> | 2018-05-14 20:37:32 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-05-14 20:37:32 +0800 |
| commit | 9e27c7a4ac117120805912f4fbd820bde9f94fc7 (patch) | |
| tree | a57f3e5b34c4e05c90fba3a7029514c5c084a6b6 /.scripts | |
| parent | b223dbbeb4bcbd4550b9f009f0bc38a0449f2ce7 (diff) | |
| download | eibhear-9e27c7a4ac117120805912f4fbd820bde9f94fc7.tar.gz eibhear-9e27c7a4ac117120805912f4fbd820bde9f94fc7.tar.zst eibhear-9e27c7a4ac117120805912f4fbd820bde9f94fc7.zip | |
Fix i3weather blank location bug
Diffstat (limited to '.scripts')
| -rwxr-xr-x | .scripts/i3weather | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/.scripts/i3weather b/.scripts/i3weather index d5112cc..0f98b35 100755 --- a/.scripts/i3weather +++ b/.scripts/i3weather @@ -1,14 +1,16 @@ #!/bin/bash +### This is only if your location isn't automatically detected, otherwise you can leave it blank. +location="" [[ $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 -### This is only if your location isn't automatically detected, otherwise you can leave it blank. -loc="" -location=${loc// /+} - -curl wttr.in/~$location > ~/.weatherreport +if [[ "$location" != "" ]] + then + location="~${location// /+}" +fi +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') |
