mirror of
git://slackware.nl/current.git
synced 2024-12-28 09:59:53 +01:00
24 lines
672 B
Text
24 lines
672 B
Text
|
#!/bin/sh
|
||
|
# startfvwm2 v1.0
|
||
|
|
||
|
########################################################################
|
||
|
## Start DBUS session bus ##
|
||
|
########################################################################
|
||
|
|
||
|
|
||
|
if [ -z "$DBUS_SESSION_BUS_ADDRESS" ]; then
|
||
|
eval $(dbus-launch --sh-syntax --exit-with-session)
|
||
|
fi
|
||
|
|
||
|
|
||
|
########################################################################
|
||
|
## Start fvwm2 Window Manager ##
|
||
|
########################################################################
|
||
|
|
||
|
|
||
|
exec /usr/bin/fvwm2
|
||
|
|
||
|
|
||
|
########################################################################
|
||
|
|