aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/dot_config/waybar
diff options
context:
space:
mode:
Diffstat (limited to 'dot_config/waybar')
-rwxr-xr-xdot_config/waybar/executable_failed-units-status.sh53
-rwxr-xr-xdot_config/waybar/executable_pacdiff-status.sh52
2 files changed, 105 insertions, 0 deletions
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"
diff --git a/dot_config/waybar/executable_pacdiff-status.sh b/dot_config/waybar/executable_pacdiff-status.sh
new file mode 100755
index 0000000..dad3166
--- /dev/null
+++ b/dot_config/waybar/executable_pacdiff-status.sh
@@ -0,0 +1,52 @@
+#!/bin/sh
+# Waybar custom/pacdiff: shows count of unresolved .pacnew/.pacsave files.
+# Source of truth is `pacdiff -o` (output mode — lists differing files,
+# does nothing). Hidden when zero. Mako fires once when the count goes
+# from "no problems" to "non-zero" (i.e. on the post-`pacman -Syu`
+# settle), so you're nudged exactly once per upgrade wave.
+#
+# Click handler runs `sudo DIFFPROG='nvim -d' pacdiff` in a floating
+# ghostty.
+
+set -eu
+
+STATE=${XDG_RUNTIME_DIR:-/tmp}/waybar-pacdiff-prev
+
+emit_empty() {
+ printf '{"text":"","class":"fresh","tooltip":""}\n'
+ printf 0 >"$STATE" 2>/dev/null || :
+ exit 0
+}
+
+command -v pacdiff >/dev/null 2>&1 || emit_empty
+
+count=$(pacdiff -o 2>/dev/null | grep -c . || :)
+case "$count" in
+ '' | *[!0-9]*) count=0 ;;
+esac
+
+[ "$count" -eq 0 ] && emit_empty
+
+text="pacdiff ${count}"
+tooltip="${count} unresolved .pacnew/.pacsave file(s) — click to merge with \`nvim -d\`"
+printf '{"text":"%s","class":"warn","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 [ "$prev" -eq 0 ] && [ "$count" -gt 0 ] &&
+ command -v notify-send >/dev/null 2>&1; then
+ notify-send \
+ --app-name=pacdiff \
+ --urgency=normal \
+ --icon=text-x-generic \
+ "Pacman config files need merging" \
+ "${count} .pacnew/.pacsave file(s). Click the bar entry to run pacdiff."
+fi
+
+printf '%s' "$count" >"$STATE"