diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-05-15 02:02:40 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-05-15 02:02:40 +0000 |
| commit | b74cff0302e70d702e958a8205a6f6e2e2858192 (patch) | |
| tree | 2befabba0b24c6d115636f3a1bc335760cc3fb5a /data/autostart.sh | |
| parent | 5d85502e3b12ae2301b28d624d7fa60a66f646bb (diff) | |
changes to the manual pages.
adding openbox-session.
add paths to the xsession .desktop files
Diffstat (limited to 'data/autostart.sh')
| -rw-r--r-- | data/autostart.sh | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/data/autostart.sh b/data/autostart.sh new file mode 100644 index 00000000..962cae07 --- /dev/null +++ b/data/autostart.sh @@ -0,0 +1,31 @@ +#!/bin/sh + +# 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 which gnome-settings-daemon >/dev/null; then + gnome-settings-daemon & +fi + +# Preload stuff for KDE apps +if which start_kdeinit >/dev/null; then + LD_BIND_NOW=true start_kdeinit --new-startup +kcminit_startup & +fi |
