This commit is contained in:
tavo 2025-01-05 12:19:07 -06:00
parent 248b7e644d
commit dc8948f37d
2 changed files with 5 additions and 9 deletions

0
X11/init.d/init.sh Normal file → Executable file
View file

View file

@ -37,17 +37,13 @@ if [ -d /etc/X11/xinit/xinitrc.d ] ; then
unset f unset f
fi fi
if test -d ~/.config/X11/init.d/; then if [ -d ~/.config/X11/init.d ] ; then
for config in ~/.config/X11/init.d/*.sh; do for f in ~/.config/X11/init.d/?*.sh ; do
test -r "$config" && . "$config" [ -x "$f" ] && . "$f"
done done
unset config unset f
fi fi
while true; do while true; do
dwm >/dev/null 2>&1 dwm >/dev/null 2>&1
done done
exec dwm
. /etc/X11/Xsession