summaryrefslogtreecommitdiff
path: root/data/autostart.sh.in
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2010-02-17 16:11:36 -0500
committerDana Jansens <danakj@orodu.net>2010-02-17 16:11:36 -0500
commitbcc31faf7ecd8b0ad3b66a75fc72145e93e6c35a (patch)
treede901ca02d357392d35e88ce42db60e8adca841f /data/autostart.sh.in
parent7d71fb8a77ba9e2ea4938e793410f029265507a8 (diff)
revamp the autostart functionality, so autostart apps launch after openbox.
add /usr/libexec/openbox-autostart which runs the global/user scripts and launches /usr/libexec/openbox-xdg-autostart (which runs .desktop autostart stuff) make openbox-session call openbox with --startup option, to make openbox launch /usr/libexec/openbox-autostart *after* it is initialized. add /etc/xdg/openbox/environment and ~/.config/openbox/environment files to let user change environment variables (locale) for their Openbox session, which openbox-session loads before running openbox.
Diffstat (limited to 'data/autostart.sh.in')
-rw-r--r--data/autostart.sh.in44
1 files changed, 0 insertions, 44 deletions
diff --git a/data/autostart.sh.in b/data/autostart.sh.in
deleted file mode 100644
index eb55558a..00000000
--- a/data/autostart.sh.in
+++ /dev/null
@@ -1,44 +0,0 @@
-# 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="OPENBOX"
-if which @secretbindir@/xdg-autostart >/dev/null; then
- @secretbindir@/xdg-autostart $DESKTOP_ENV
-fi