etc/xinitrc

13 lines
176 B
Text
Raw Normal View History

xconf=/etc/X11/xinit/xinitrc.d
if test -d $xconf ; then
for f in $xconf/?*.sh ; do
test -r $f && . "$f"
done
fi
test -r "$SETENV" && . "$SETENV" \
&& setenv x
2020-11-04 02:03:20 +03:00
exec $@