diff options
Diffstat (limited to '')
-rw-r--r-- | xorg-xinit/xinit | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/xorg-xinit/xinit b/xorg-xinit/xinit index bd1874c..3d3d0bb 100644 --- a/xorg-xinit/xinit +++ b/xorg-xinit/xinit @@ -1,7 +1,9 @@ # -*- shell-script -*- for f in /etc/X11/xinit/xinitrc.d/*; do - if test -r "$f"; then + if test "$f" = /etc/X11/xinit/xinitrc.d/50-systemd-user.sh; then + # Ignore that file, it causes a catastrophic failure that is hard to locate + elif test -r "$f"; then . -- "$f" fi done |