From: Matthew Owens Date: Wed, 5 Aug 2020 11:57:02 +0000 (+0100) Subject: updated procup to output the name of the script to notify-send X-Git-Url: https://git.owens.tech///git?a=commitdiff_plain;h=02b73772a3b5f3a8e588d9433b5f431e68067d7e;p=scripts.git updated procup to output the name of the script to notify-send --- diff --git a/procup b/procup index 17bfc19..727f42e 100755 --- a/procup +++ b/procup @@ -7,6 +7,6 @@ procs="dunst dwmbar sxhkd" for proc in $procs; do if [[ $(pgrep $proc) -eq "" ]]; then $proc & - notify-send cron "$proc restarted" + notify-send procup "$proc restarted" fi done