]>
Dogcows Code - chaz/openbox/blob - data/autostart.sh
1 # This shell script is run before Openbox launches.
2 # Environment variables set here are passed to the Openbox session.
4 # Set a background color
6 if which hsetroot
>/dev
/null
; then
9 if which esetroot
>/dev
/null
; then
12 if which xsetroot
>/dev
/null
; then
17 test -z $BG || $BG -solid "#303030"
20 if which dbus
-launch >/dev
/null
&& test -z "$DBUS_SESSION_BUS_ADDRESS"; then
21 eval `dbus-launch --sh-syntax --exit-with-session`
24 # Make GTK apps look and behave how they were set up in the gnome config tools
25 if which /usr
/libexec
/gnome
-settings-daemon >/dev
/null
; then
26 /usr
/libexec
/gnome
-settings-daemon &
27 elif which gnome
-settings-daemon >/dev
/null
; then
28 gnome
-settings-daemon &
31 # Preload stuff for KDE apps
32 if which start_kdeinit
>/dev
/null
; then
33 LD_BIND_NOW
=true start_kdeinit
--new-startup +kcminit_startup
&
36 # Run XDG autostart things. By default don't run anything desktop-specific
37 # See xdg-autostart --help more info
39 if which xdg
-autostart >/dev
/null
; then
40 xdg
-autostart $DESKTOP_ENV
This page took 0.033769 seconds and 4 git commands to generate.