summaryrefslogtreecommitdiff
path: root/dotfiles/hyprland/.local/bin/waybar-disk
blob: 605065319b26eab38e731bb65cd657f80f333a14 (plain)
1
2
3
4
5
6
7
#!/bin/sh
# Waybar disk usage module with warning/critical states
PCT=$(df --output=pcent / | tail -1 | tr -d ' %')
CLASS=""
[ "$PCT" -ge 80 ] && CLASS="warning"
[ "$PCT" -ge 90 ] && CLASS="critical"
printf '{"text": "%s%%", "class": "%s", "tooltip": "Root: %s%% used"}\n' "$PCT" "$CLASS" "$PCT"