mirror of
git://slackware.nl/current.git
synced 2024-12-28 09:59:53 +01:00
24 lines
677 B
Text
24 lines
677 B
Text
|
#!/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
|
||
|
|
||
|
|
||
|
########################################################################
|
||
|
|