Add uptime-module to waybar

This commit is contained in:
Tobias Reisinger 2024-01-30 20:03:07 +01:00
parent c9b0185c9a
commit 6a85c0e22b
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
3 changed files with 30 additions and 3 deletions
.config/waybar/custom

View file

@ -0,0 +1,14 @@
#!/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\"}"