diff options
| author | Dana Jansens <danakj@orodu.net> | 2008-02-27 19:37:48 -0500 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2008-02-27 19:37:48 -0500 |
| commit | 26cc41f6c6187dabd5c7ee4365c8fa44751009e5 (patch) | |
| tree | 15bef496e6efe33219314402ac86cd1444330cb0 /data/autostart.sh.in | |
| parent | 22a88cfe99d897dc7d3be7b53b954f6cdfa250c6 (diff) | |
| parent | b1dc814128c2cd402ef7b6717348a795a3c0ad14 (diff) | |
Merge branch 'backport' into work
Diffstat (limited to 'data/autostart.sh.in')
| -rw-r--r-- | data/autostart.sh.in | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/data/autostart.sh.in b/data/autostart.sh.in new file mode 100644 index 00000000..62a30e1c --- /dev/null +++ b/data/autostart.sh.in @@ -0,0 +1,44 @@ +# This shell script is run before Openbox launches. +# Environment variables set here are passed to the Openbox session. + +# Set a background color +BG="" +if which hsetroot >/dev/null; then + BG=hsetroot +else + if which esetroot >/dev/null; then + BG=esetroot + else + if which xsetroot >/dev/null; then + BG=xsetroot + fi + fi +fi +test -z $BG || $BG -solid "#303030" + +# D-bus +if which dbus-launch >/dev/null && test -z "$DBUS_SESSION_BUS_ADDRESS"; then + eval `dbus-launch --sh-syntax --exit-with-session` +fi + +# Make GTK apps look and behave how they were set up in the gnome config tools +if test -x /usr/libexec/gnome-settings-daemon >/dev/null; then + /usr/libexec/gnome-settings-daemon & +elif which gnome-settings-daemon >/dev/null; then + gnome-settings-daemon & +# Make GTK apps look and behave how they were set up in the XFCE config tools +elif which xfce-mcs-manager >/dev/null; then + xfce-mcs-manager n & +fi + +# Preload stuff for KDE apps +if which start_kdeinit >/dev/null; then + LD_BIND_NOW=true start_kdeinit --new-startup +kcminit_startup & +fi + +# Run XDG autostart things. By default don't run anything desktop-specific +# See xdg-autostart --help more info +DESKTOP_ENV="" +if which @secretbindir@/xdg-autostart >/dev/null; then + @secretbindir@/xdg-autostart $DESKTOP_ENV +fi |
