summaryrefslogtreecommitdiffstats
path: root/source/xap/blackbox/startblackbox
blob: e72bbd3f109fe64b1b4b185db783f8cf0a4459fc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/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


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