blob: b9d001d118d4ff84abfd030fcb798e0f704212c4 (
plain) (
tree)
|
|
#!/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
########################################################################
|