You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
266 B

#!/usr/bin/env sh
# Terminate already running bar instances
killall -q dunst
# Wait until the processes have been shut down
while pgrep -x dunst > /dev/null; do sleep 1; done
# Launch bar1 and bar2
dunst &
echo "Dunst launched..."
notify-send "Dunst launched"