Ik heb nu Gnome als desktop.
Ik heb Windowmaker geinstalleerd.
Volgens de beschrijving moet ik nu wmaker.inst draaien om windowmaker mijn default X te laten zijn.
Ik heb dit gedaan maar hij start nog steeds op in Gnome.
Mijn xinitrc verwijs naar Xclients. Dit is zoals hij er uit ziet:
Zoals ze kunt zien wordt nergens over wm gesproken, aleen maar over gnome en KDE.
Ik heb hier op tweakers gezoch en via google het enige wat ik kon vinden is dat ik wmaker.inst moest draaien wat ik heb gedaan.
Ik heb Windowmaker geinstalleerd.
Volgens de beschrijving moet ik nu wmaker.inst draaien om windowmaker mijn default X te laten zijn.
Ik heb dit gedaan maar hij start nog steeds op in Gnome.
Mijn xinitrc verwijs naar Xclients. Dit is zoals hij er uit ziet:
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
| #!/bin/bash
# Copyright (C) 1999 - 2004 Red Hat, Inc. All rights reserved. This
# copyrighted material is made available to anyone wishing to use, modify,
# copy, or redistribute it subject to the terms and conditions of the
# GNU General Public License version 2.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
GSESSION="$(which gnome-session 2>/dev/null)"
STARTKDE="$(which startkde 2>/dev/null)"
# check to see if the user has a preferred desktop
PREFERRED=
if [ -f /etc/sysconfig/desktop ]; then
. /etc/sysconfig/desktop
if [ "$DESKTOP" = "GNOME" ]; then
PREFERRED="$GSESSION"
elif [ "$DESKTOP" = "KDE" ]; then
PREFERRED="$STARTKDE"
fi
fi
if [ -n "$PREFERRED" ]; then
exec "$PREFERRED"
fi
# now if we can reach here, either no desktop file was present,
# or the desktop requested is not installed.
# by default, we run GNOME.
if [ -n "$GSESSION" ]; then
exec "$GSESSION"
fi
# if GNOME isn't installed, try KDE.
if [ -n "$STARTKDE" ]; then
exec "$STARTKDE"
fi
# Failsafe.
# these files are left sitting around by TheNextLevel.
rm -f $HOME/Xrootenv.0
# Argh! Nothing good is installed. Fall back to twm
{
# gosh, neither fvwm95 nor fvwm2 is available;
# fall back to failsafe settings
if [ -x /usr/bin/xclock ] ; then
/usr/bin/xclock -geometry 100x100-5+5 &
elif [ -x /usr/bin/xclock ] ; then
/usr/bin/xclock -geometry 100x100-5+5 &
fi
if [ -x /usr/bin/xterm ] ; then
/usr/bin/xterm -geometry 80x50-50+150 &
fi
if [ -x /usr/bin/firefox -a -f /usr/share/doc/HTML/index.html ]; then
/usr/bin/firefox /usr/share/doc/HTML/index.html &
fi
if [ -x /usr/bin/twm ] ; then
exec /usr/bin/twm
fi
} |
Zoals ze kunt zien wordt nergens over wm gesproken, aleen maar over gnome en KDE.
Ik heb hier op tweakers gezoch en via google het enige wat ik kon vinden is dat ik wmaker.inst moest draaien wat ik heb gedaan.