diff options
| author | Luke Smith <luke@lukesmith.xyz> | 2020-05-07 17:31:42 -0400 |
|---|---|---|
| committer | Luke Smith <luke@lukesmith.xyz> | 2020-05-07 17:31:42 -0400 |
| commit | 33e329c8cb44679c37054d1823ef487c2569fcdc (patch) | |
| tree | 96e6e12e7ac894ba6af70bd5d0d15510113b3aac /.local/bin/statusbar/weather | |
| parent | baad9e0136890d8b894b0b0562466c112c5bcc43 (diff) | |
| download | eibhear-33e329c8cb44679c37054d1823ef487c2569fcdc.tar.gz eibhear-33e329c8cb44679c37054d1823ef487c2569fcdc.tar.zst eibhear-33e329c8cb44679c37054d1823ef487c2569fcdc.zip | |
statusbar scripts now open when shift-clicked
weather module "fixed"
other minor statusbar script tweaks
Diffstat (limited to '.local/bin/statusbar/weather')
| -rwxr-xr-x | .local/bin/statusbar/weather | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.local/bin/statusbar/weather b/.local/bin/statusbar/weather index 68d30a3..76a84d9 100755 --- a/.local/bin/statusbar/weather +++ b/.local/bin/statusbar/weather @@ -15,15 +15,15 @@ showweather() { printf "%s" "$(sed '16q;d' "${XDG_DATA_HOME:-$HOME/.local/share} grep -wo "[0-9]*%" | sort -rn | sed "s/^/☔ /g;1q" | tr -d '\n')" sed '13q;d' "${XDG_DATA_HOME:-$HOME/.local/share}/weatherreport" | grep -o "m\\([-+]\\)*[0-9]\\+" | sort -n -t 'm' -k 2n | sed -e 1b -e '$!d' | tr '\n|m' ' ' | awk '{print " 🥶",$1 "°","🌞",$2 "°"}' ;} -# The BLOCK_BUTTON bloat for clicking in i3. case $BLOCK_BUTTON in - 1) setsid "$TERMINAL" -e less -Sf "${XDG_DATA_HOME:-$HOME/.local/share}/weatherreport" & ;; - 2) getforecast && showweather ;; - 3) notify-send "🌈 Weather module" "\- Left click for full forecast. + 1) setsid "$TERMINAL" -e less -Srf "${XDG_DATA_HOME:-$HOME/.local/share}/weatherreport" & ;; + 2) getforecast && showweather ;; + 3) notify-send "🌈 Weather module" "\- Left click for full forecast. - Middle click to update forecast. ☔: Chance of rain/snow 🥶: Daily low 🌞: Daily high" ;; + 6) "$TERMINAL" -e "$EDITOR" "$0" ;; esac # The test if our forcecast is updated to the day. If it isn't download a new |
