Files
notify-disk-space/update-notifier
2025-09-08 17:34:27 +02:00

11 lines
279 B
Bash
Executable File

#!/usr/bin/env bash
#export DBUS_SESSION_BUS_ADDRESS="${DBUS_SESSION_BUS_ADDRESS:-unix:path=/run/user/${UID}/bus}"
#export DISPLAY=:0
n=$(checkupdates | wc -l)
if [ "$n" != "0" ]; then
notify-send "System update" "$n updates available."
else
notify-send "No updates"
fi