aboutsummaryrefslogtreecommitdiff
path: root/.local/bin/statusbar/sb-forecast
diff options
context:
space:
mode:
Diffstat (limited to '.local/bin/statusbar/sb-forecast')
-rwxr-xr-x.local/bin/statusbar/sb-forecast10
1 files changed, 5 insertions, 5 deletions
diff --git a/.local/bin/statusbar/sb-forecast b/.local/bin/statusbar/sb-forecast
index d0e5326..f7df265 100755
--- a/.local/bin/statusbar/sb-forecast
+++ b/.local/bin/statusbar/sb-forecast
@@ -34,17 +34,17 @@ readfile() { weatherdata="$(cat "$weatherreport")" ;}
showweather() {
readfile
- printf "rain: %s min: %s° max: %s°\n" "$(getprecipchance)" $(getdailyhighlow)
+ printf " %s  %s°  %s°\n" "$(getprecipchance)" $(getdailyhighlow)
}
case $BLOCK_BUTTON in
1) setsid -f "$TERMINAL" -e less -Sfr "$weatherreport" ;;
2) getforecast && showweather ;;
- 3) notify-send "🌈 Weather module" "\- Left click for full forecast.
+ 3) notify-send "  Weather module" "\- Left click for full forecast.
- Middle click to update forecast.
-☔: Chance of rain/snow
-🥶: Daily low
-🌞: Daily high" ;;
+  : Chance of rain/snow
+  : Daily low
+  : Daily high" ;;
8) setsid -f "$TERMINAL" -e "$EDITOR" "$0" ;;
esac