Update various cities

Migrate alacritty.toml to new version
Remove various waybar modules
This commit is contained in:
Tobias Reisinger 2024-10-23 14:27:23 +02:00
parent 876f11177d
commit 06f35a4eb9
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
7 changed files with 11 additions and 26 deletions

View file

@ -1,14 +0,0 @@
#!/usr/bin/env sh
result=$(curl https://status.serguzim.net/api/status-page/heartbeat/serguzim-net \
| jq '.heartbeatList | to_entries | map(.value | last .status)
| [group_by(.)[] | {value: .[0], count: length}] | map({(.value|tostring): .count}) | add')
up_count=$(echo "$result" | jq '."1" // 0')
down_count=$(echo "$result" | jq '."0" // 0')
count=$((up_count + down_count))
percent=$((up_count * 100 / count))
tooltip="status.serguzim.net\nUp: $up_count\nDown: $down_count\nTotal: $count\nPercent: $percent%"
echo "{\"text\": \"$percent%\", \"tooltip\": \"$tooltip\"}"