wok-stable view openbox/stuff/openbox/autostart.sh @ rev 684

Up: openbox (3.4.7.2) with new pipe menu
author Christophe Lincoln <pankso@slitaz.org>
date Fri Apr 25 16:12:19 2008 +0200 (2008-04-25)
parents 9b77d965384a
children
line source
1 # This shell script is run before Openbox launches.
2 # Environment variables set here are passed to the Openbox session.
4 # Start PCmanFM as deamon for Wallpaper and desktop icons.
5 if which pcmanfm >/dev/null; then
6 pcmanfm -d &
7 fi
9 # Start the panel.
10 if which lxpanel >/dev/null; then
11 lxpanel &
12 fi
14 # Start Pacellite clipboard.
15 if which parcellite >/dev/null; then
16 parcellite &
17 fi
19 # Set a background color using hsetroot (depends on imlib2) or xsetroot.
21 #BG=/usr/share/images/slitaz-background.png
22 #BG=$HOME/Images/background.png
24 #if which hsetroot >/dev/null; then
25 #hsetroot -fill $BG &
26 #else
27 #if which xsetroot >/dev/null; then
28 #xsetroot -solid "#222222" &
29 #fi
30 #fi