summaryrefslogtreecommitdiffstats
path: root/source/xap/fvwm/startfvwm2
blob: b9d001d118d4ff84abfd030fcb798e0f704212c4 (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
#  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


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