fix: sxhkd not being disowned in bspwmrc causing the script to never stop and sxhkd not being adopted by PID1

Signed-off-by: Louis Vallat <louis@louis-vallat.xyz>
This commit is contained in:
Louis Vallat 2022-06-24 10:10:50 +02:00
parent 14ae6d7099
commit fb58e6b305
No known key found for this signature in database
GPG Key ID: 0C87282F76E61283

View File

@ -5,7 +5,8 @@ set -x
# Autostart
autorandr --change & disown
pgrep -x sxhkd > /dev/null || sxhkd & disown
pgrep -x sxhkd && killall sxhkd
sxhkd & disown
xrdb -load $HOME/.config/.Xresources & disown
dunst -conf $HOME/.config/dunst/dunstrc & disown
picom --experimental-backends & disown