blob: 67400c17b41c94dc23e7ae31a88c595d2736beec (
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
|