2008-01-24 02:57:44 +00:00
|
|
|
#setting green backgroun, if xsetroot exists
|
|
|
|
if [ -x `which xsetroot` ]; then
|
|
|
|
xsetroot -solid green
|
|
|
|
fi
|
|
|
|
|
2008-05-22 11:18:18 +00:00
|
|
|
BKGD_IMAGE_PATH=/usr/share/X11/bkgd-images/
|
2007-10-09 22:10:58 +00:00
|
|
|
if [ -x `which Esetroot` ]; then
|
|
|
|
Esetroot -scale ${BKGD_IMAGE_PATH}/default.png
|
2007-10-08 21:32:16 +00:00
|
|
|
fi
|
2008-05-16 21:43:29 +00:00
|
|
|
|
|
|
|
# starting window manager, if available
|
|
|
|
if [ -x /usr/bin/fluxbox ]; then
|
|
|
|
/usr/bin/fluxbox &
|
|
|
|
elif [ -x /usr/bin/matchbox-window-manager ]; then
|
|
|
|
/usr/bin/matchbox-window-manager &
|
|
|
|
fi
|
|
|
|
|
|
|
|
#starting shell
|
2008-06-13 22:45:39 +00:00
|
|
|
/usr/bin/xterm
|
2008-05-16 21:43:29 +00:00
|
|
|
|