#!/bin/sh # # /etc/X11/xinit/xinitrc.xfce # xsetroot -solid black -cursor_name watch if [ -d "$HOME/Desktop/Autostart" ]; then for i in `ls -1 ${HOME}/Desktop/Autostart/ 2>/dev/null`; do if [ -x $HOME/Desktop/Autostart/$i ]; then $HOME/Desktop/Autostart/$i & fi done fi xscreensaver -no-splash -lock-mode & exec xfwm xsetroot -solid black # EOF