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
fi
if test -d ~/.config/X11/init.d/; then
for config in ~/.config/X11/init.d/*.sh; do
test -r "$config" && . "$config"
if [ -d ~/.config/X11/init.d ] ; then
for f in ~/.config/X11/init.d/?*.sh ; do
[ -x "$f" ] && . "$f"
done
unset config
unset f
fi
while true; do
dwm >/dev/null 2>&1
done
exec dwm
. /etc/X11/Xsession