fixes
This commit is contained in:
8
fedora/waybar/scripts/weather.sh
Executable file
8
fedora/waybar/scripts/weather.sh
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/bin/bash
|
||||
weather=$(curl -s "wttr.in/?format=%c%t" 2>/dev/null)
|
||||
if [ -z "$weather" ] || echo "$weather" | grep -q "Unknown"; then
|
||||
echo '{"text": "N/A", "tooltip": "Weather unavailable"}'
|
||||
exit 0
|
||||
fi
|
||||
tooltip=$(curl -s "wttr.in/?format=%l:+%C+%t+%w+%h" 2>/dev/null)
|
||||
echo "{\"text\": \"${weather}\", \"tooltip\": \"${tooltip}\"}"
|
||||
Reference in New Issue
Block a user