From ac0422a9eb7ca9faae96566ca92a7e579d9a6437 Mon Sep 17 00:00:00 2001 From: Adam Stück Date: Thu, 4 May 2023 15:52:13 +0200 Subject: Drop unused scripts --- .local/bin/statusbar/sb-forecast | 49 ---------------------------------------- 1 file changed, 49 deletions(-) delete mode 100755 .local/bin/statusbar/sb-forecast (limited to '.local/bin/statusbar/sb-forecast') diff --git a/.local/bin/statusbar/sb-forecast b/.local/bin/statusbar/sb-forecast deleted file mode 100755 index c9923fd..0000000 --- a/.local/bin/statusbar/sb-forecast +++ /dev/null @@ -1,49 +0,0 @@ -#!/bin/sh - -LOCATION=$(cat "$XDG_CONFIG_HOME/forecast/location") - -main () { - case "$1" in - -b|--browser) - xdg-open "https://wttr.in/$LOCATION" - exit 0 ;; - esac - - res=$(curl -sf wttr.in/"$LOCATION"?format="%x+%t") || exit 1 - - icon=$(condition_icon "$res") - temp=$(temperature "$res") - echo "$icon" "$temp" -} - -condition_icon () { - icon=$(echo "$1" | cut -d\ -f1) - - case "$icon" in - '=') echo  ;; - '/') echo  ;; - '.') echo  ;; - 'm') echo  ;; - 'o') echo  ;; - 'mmm') echo  ;; - 'mm') echo  ;; - '///') echo  ;; - '//') echo  ;; - '**') echo  ;; - '*') echo  ;; - '*/*') echo  ;; - 'x') echo  ;; - 'x/') echo  ;; - '*/') echo  ;; - '/!/') echo  ;; - '!/') echo  ;; - '*!*') echo  ;; - *) echo ? ;; - esac -} - -temperature () { - echo "$1" | cut -d\ -f2 | sed -e 's/+//' -e 's/-0/0/' -e 's/C//' -} - -main "$@" -- cgit v1.2.3-70-g09d2