blob: 3d3d0bb77215621a1413eb940a62409cb5100065 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
# -*- shell-script -*-
for f in /etc/X11/xinit/xinitrc.d/*; do
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
|