hyprdots

my dotfiles
git clone https://git.awy.one/hyprdots.git
Log | Files | Refs | README | LICENSE

weath (1290B)


      1 #!/bin/sh
      2 #
      3 # Get the weather on the terminal. You can pass an alternative location as a parameter,
      4 # and/or use the 'cp' option to copy the forecast as plaintext to the clipboard.
      5 
      6 report="${XDG_CACHE_HOME:-$HOME/.cache}/weatherreport"
      7 
      8 if [ "$1" = 'cp' ]; then
      9         # shellcheck disable=SC2015
     10         [ -z "$2" ] && sed 's/\x1b\[[^m]*m//g' "$report" | wl-copy &&
     11                 notify-send "Weather forecast for '${LOCATION:-$(head -n 1 "$report" | cut -d' ' -f3-)}' copied to clipboard." ||
     12                         { data="$(curl -sfm 5 "${WTTRURL:-wttr.in}/$2?T")" &&
     13                         notify-send "Weather forecast for '$2' copied to clipboard." &&
     14                         echo "$data" | wl-copy ||
     15                         notify-send 'Failed to get weather forecast!' 'Check your internet connection and the supplied location.'; }
     16 else
     17         [ -n "$2" ] &&
     18                 notify-send "Invalid option '$1'! The only valid option is 'cp'." &&
     19                 exit 1
     20 
     21         # shellcheck disable=SC2015
     22         [ -z "$1" ] && less -S "$report" ||
     23                 data="$(curl -sfm 5 "${WTTRURL:-wttr.in}/$1")" && echo "$data" | less -S ||
     24                         notify-send 'Failed to get weather forecast!' 'Check your internet connection and the supplied location.'
     25 fi