From aba0bd84ac3b92d45f55b03692814e496358fe25 Mon Sep 17 00:00:00 2001 From: sommerfeld Date: Wed, 13 May 2026 13:43:35 +0100 Subject: feat(waybar): pacdiff + failed-units reminders MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Two live waybar modules — no timer/state-file pipeline because the inputs are cheap to compute on every poll: custom/pacdiff (interval 300s) Counts unresolved .pacnew / .pacsave files via `pacdiff -o` (output mode — lists only, takes no action). Hidden at zero. Yellow 'pacdiff N' otherwise. Mako fires once on the 0→N transition, so you get exactly one nudge per upgrade wave, not a sustained re-nag for files you've decided to defer. Click runs `sudo DIFFPROG='nvim -d' pacdiff` in a floating ghostty. custom/failed-units (interval 30s) Sums `systemctl --failed` (system) and `systemctl --user --failed` counts. Hidden at zero. Red 'failed N' otherwise. Mako fires only on upward transition (count went up since last poll), so already-known failures don't keep paging you while you investigate. Click prints both `systemctl --failed` outputs in a floating ghostty. Both modules use the same $XDG_RUNTIME_DIR/waybar-X-prev pattern as the update reminder for state, which makes 'reboot resets the nag' the default behaviour — exactly the right semantics for both: a fresh boot deserves a fresh look at pending pacdiffs and any failed units. --- .../waybar/executable_failed-units-status.sh | 53 ++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100755 dot_config/waybar/executable_failed-units-status.sh (limited to 'dot_config/waybar/executable_failed-units-status.sh') diff --git a/dot_config/waybar/executable_failed-units-status.sh b/dot_config/waybar/executable_failed-units-status.sh new file mode 100755 index 0000000..da7db49 --- /dev/null +++ b/dot_config/waybar/executable_failed-units-status.sh @@ -0,0 +1,53 @@ +#!/bin/sh +# Waybar custom/failed-units: shows count of failed systemd units across +# the system bus and the current user's session bus. Hidden when zero. +# Mako fires only on transition upward (count went up since last check), +# so transient failures you've already seen don't re-nag. +# +# Click handler shows `systemctl --failed` and `systemctl --user --failed` +# in a floating ghostty. + +set -eu + +STATE=${XDG_RUNTIME_DIR:-/tmp}/waybar-failed-units-prev + +emit_empty() { + printf '{"text":"","class":"fresh","tooltip":""}\n' + printf 0 >"$STATE" 2>/dev/null || : + exit 0 +} + +count_failed() { + systemctl "$@" --failed --no-legend --plain 2>/dev/null | + grep -c . || : +} + +sys=$(count_failed) +usr=$(count_failed --user) +case "$sys" in '' | *[!0-9]*) sys=0 ;; esac +case "$usr" in '' | *[!0-9]*) usr=0 ;; esac +total=$((sys + usr)) + +[ "$total" -eq 0 ] && emit_empty + +text="failed ${total}" +tooltip="${sys} system + ${usr} user unit(s) failed — click for details" +printf '{"text":"%s","class":"critical","tooltip":"%s"}\n' "$text" "$tooltip" + +prev=0 +if [ -f "$STATE" ]; then + prev=$(cat "$STATE" 2>/dev/null || printf 0) + case "$prev" in '' | *[!0-9]*) prev=0 ;; esac +fi + +if [ "$total" -gt "$prev" ] && + command -v notify-send >/dev/null 2>&1; then + notify-send \ + --app-name=systemd \ + --urgency=critical \ + --icon=dialog-error \ + "Systemd unit failure" \ + "${sys} system + ${usr} user unit(s) failed. Click the bar entry for details." +fi + +printf '%s' "$total" >"$STATE" -- cgit v1.3.1