clean up scripts
This commit is contained in:
41
.config/polybar/scripts/info-airqualityindex.sh
Normal file
41
.config/polybar/scripts/info-airqualityindex.sh
Normal file
@@ -0,0 +1,41 @@
|
||||
#!/bin/sh
|
||||
|
||||
TOKEN=""
|
||||
CITY=""
|
||||
|
||||
API="https://api.waqi.info/feed"
|
||||
|
||||
if [ -n "$CITY" ]; then
|
||||
aqi=$(curl -sf "$API/$CITY/?token=$TOKEN")
|
||||
else
|
||||
location=$(curl -sf https://location.services.mozilla.com/v1/geolocate?key=geoclue)
|
||||
|
||||
if [ -n "$location" ]; then
|
||||
location_lat="$(echo "$location" | jq '.location.lat')"
|
||||
location_lon="$(echo "$location" | jq '.location.lng')"
|
||||
|
||||
aqi=$(curl -sf "$API/geo:$location_lat;$location_lon/?token=$TOKEN")
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ -n "$aqi" ]; then
|
||||
if [ "$(echo "$aqi" | jq -r '.status')" = "ok" ]; then
|
||||
aqi=$(echo "$aqi" | jq '.data.aqi')
|
||||
|
||||
if [ "$aqi" -lt 50 ]; then
|
||||
echo "%{F#009966}#%{F-} $aqi"
|
||||
elif [ "$aqi" -lt 100 ]; then
|
||||
echo "%{F#ffde33}#%{F-} $aqi"
|
||||
elif [ "$aqi" -lt 150 ]; then
|
||||
echo "%{F#ff9933}#%{F-} $aqi"
|
||||
elif [ "$aqi" -lt 200 ]; then
|
||||
echo "%{F#cc0033}#%{F-} $aqi"
|
||||
elif [ "$aqi" -lt 300 ]; then
|
||||
echo "%{F#660099}#%{F-} $aqi"
|
||||
else
|
||||
echo "%{F#7e0023}#%{F-} $aqi"
|
||||
fi
|
||||
else
|
||||
echo "$aqi" | jq -r '.data'
|
||||
fi
|
||||
fi
|
||||
Reference in New Issue
Block a user