Start script for notification daemon

This commit is contained in:
shockrah 2022-12-03 14:03:10 -08:00
parent 7d9a9b8c91
commit 736f5b9a7c

View File

@ -0,0 +1,12 @@
#!/bin/sh
set -e
# Conditionally start the notification daemon
if pgrep noti > /dev/null ; then
echo "Notification daemon already started"
else
echo "Starting notification-daemon"
/usr/lib/notification-daemon/notification-daemon &
fi