946bed321ece2675da1b01d282dccbb183d6cdeb
[openwrt/svn-archive/archive.git] / XOrg / meta / xorg-server-essentials / files / xinitrc
1 #setting green backgroun, if xsetroot exists
2 if [ -x `which xsetroot` ]; then
3 xsetroot -solid green
4 fi
5
6 BKGD_IMAGE_PATH=/usr/share/X11/bkgd-images/
7 if [ -x `which Esetroot` ]; then
8 Esetroot -scale ${BKGD_IMAGE_PATH}/default.png
9 fi
10
11 # starting window manager, if available
12 if [ -x /usr/bin/fluxbox ]; then
13 /usr/bin/fluxbox &
14 elif [ -x /usr/bin/matchbox-window-manager ]; then
15 /usr/bin/matchbox-window-manager &
16 fi
17
18 #starting shell
19 /bin/xterm
20