core/xorg-xinit/xinitrc

17 lines
311 B
Plaintext
Raw Normal View History

2010-05-22 06:07:29 +08:00
#!/bin/sh
#
# ~/.xinitrc
#
# Executed by startx (run your window manager from here)
2013-12-19 03:56:54 +08:00
if [ -d /etc/X11/xinit/xinitrc.d ]; then
for f in /etc/X11/xinit/xinitrc.d/*; do
[ -x "$f" ] && . "$f"
done
unset f
fi
2010-05-22 06:07:29 +08:00
# exec gnome-session
# exec startkde
# exec startxfce4
2013-12-19 03:56:54 +08:00
# ...or the Window Manager of your choice