1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2025-03-25 20:47:45 +01:00

xorg: restart dwm on changes otherwise logout

This commit is contained in:
tiyn 2023-11-03 17:11:46 +01:00
parent 248f13df8f
commit 82b789920b

View File

@ -9,6 +9,17 @@ xrandr --auto
setbg
while true; do
dwm || exit
csum=""
new_csum=$(sha1sum $(which dwm))
while true
do
if [ "$csum" != "$new_csum" ]
then
csum=$new_csum
dwm
else
exit 0
fi
new_csum=$(sha1sum $(which dwm))
sleep 0.5
done