## Openbox autostart.sh## ====================## When you login to your CrunchBang Openbox session, this autostart script ## will be executed to set-up your environment and launch any applications## you want to run at startup.#### More information about this can be found at:## http://openbox.org/wiki/Help:Autostart#### If you do something cool with your autostart script and you think others## could benefit from your hack, please consider sharing it at:## http://crunchbanglinux.org/forums/#### Have fun! :)## LOCALES:export LC_TYPE=uk_UA.utf8export XMODIFIERS=@im=SCIMexport GTK_IM_MODULE=scimexport QT_IM_MODULE=scimscim -d &## Start session managerlxsession &## Enable power managementxfce4-power-manager &## Start Thunar Daemonthunar --daemon &## Set desktop wallpapernitrogen --restore &## Launch paneltint2 &## Enable Eyecandy - off by default, uncomment one of the commands below.## Note: cairo-compmgr prefers a sleep delay, else it tends to produce## odd shadows/quirks around tint2 & Conky.#(sleep 10s && cb-compmgr --cairo-compmgr) &#cb-compmgr --xcompmgr & ## Launch network manager applet(sleep 4s && nm-applet) &## Detect and configure touchpad. See 'man synclient' for more info.if egrep -iq 'touchpad' /proc/bus/input/devices; then synclient VertEdgeScroll=1 & synclient TapButton1=1 &fi## Start xscreensaverxscreensaver -no-splash &## Start Conky after a slight delay(sleep 3s && conky -q) &## Start volumeicon after a slight delay(sleep 3s && volumeicon) &## Start Clipboard manager(sleep 3s && parcellite) &## Bad Nautilus, minimises the impact of running Nautilus under## an Openbox session by applying some gconf settings. Safe to delete.cb-bad-nautilus &## The following command will set-up a keyboard map selection tool when## running in a live session.cb-setxkbmap-live &## cb-welcome - post-installation script, will not run in a live session and## only runs once. Safe to remove.(sleep 10s && cb-welcome --firstrun) &## cb-fortune - have Statler say a little adage(sleep 120s && cb-fortune) &