dotfiles/config/sxhkd/launch.sh

11 lines
194 B
Bash
Raw Normal View History

2020-04-27 06:47:36 +00:00
#!/bin/bash
# Terminate already running bar instances
killall -q sxhkd
# Wait until the processes have been shut down
while pgrep -x axhkd >/dev/null; do sleep 1; done
# Start daemon
sxhkd &