summaryrefslogblamecommitdiffstats
path: root/source/xap/blackbox/startblackbox
blob: e72bbd3f109fe64b1b4b185db783f8cf0a4459fc (plain) (tree)






















                                                                        
#!/bin/sh
#  startblackbox v1.0

########################################################################
##  Start DBUS session bus                                            ##
########################################################################


if [ -z "$DBUS_SESSION_BUS_ADDRESS" ]; then
   eval `dbus-launch --sh-syntax --exit-with-session`
fi


########################################################################
##  Start blackbox Window Manager                                     ##
########################################################################


exec /usr/bin/blackbox


########################################################################