dotfiles/bin/restart
2023-08-15 02:28:08 +03:00

11 lines
154 B
Bash
Executable file

#!/bin/bash
if [ -z "$1" ]
then
echo "./restart [service]";
exit 1;
fi
pkill -USR1 -x $1
dunstify "$1 restarted" -t 3500
$1 & > /dev/null 2>&1