mirror of
https://github.com/eliasrenman/dotfiles.git
synced 2026-03-16 20:46:08 +01:00
10 lines
268 B
Bash
Executable File
10 lines
268 B
Bash
Executable File
#!/bin/bash
|
|
|
|
LOC="$1"
|
|
# HTML encode string as %20
|
|
TEMP=$(curl -s 'https://wttr.in/'${LOC}'?format=%t\n&m')
|
|
ICON=$(curl -s 'https://wttr.in/'${LOC}'?format=1' | grep -o '^\S*' )
|
|
# echo $ICON
|
|
echo '{"text": "'$TEMP'", "tooltip": "'$ICON' '$LOC'", "class": "weather" }'
|
|
|