mirror of https://github.com/tiyn/dotfiles
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.
26 lines
632 B
26 lines
632 B
#!/bin/sh
|
|
|
|
xrandr --auto
|
|
|
|
[ -f "$HOME/.config/xorg/xprofile" ] && . "$HOME/.config/xorg/xprofile" # global autostart
|
|
[ -f "$HOME/.config/xorg/xlocal" ] && . "$HOME/.config/xorg/xlocal" # local autostart
|
|
[ -f "$HOME/.config/xorg/xdefaults" ] && xrdb -merge "$HOME/.config/xorg/xdefaults" # global resources
|
|
[ -f "$HOME/.config/xorg/xpcspec" ] && xrdb -merge "$HOME/.config/xorg/xpcspec" # local resources
|
|
|
|
setbg
|
|
|
|
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
|