Files
dotfiles/.config/waybar/wittr.sh
Belal Elsabbagh 8b6f7c4467 moved to stow
2024-12-23 10:51:37 +02:00

6 lines
214 B
Bash
Executable File

#!/usr/bin/sh
req=$(curl -s wttr.in/CITY?format="%t|%l+(%c%f)+%h,+%C")
bar=$(echo $req | awk -F "|" '{print $1}')
tooltip=$(echo $req | awk -F "|" '{print $2}')
echo "{\"text\":\"$bar\", \"tooltip\":\"$tooltip\"}"