Browse Source

xinitrc sample: better outline the default WM

git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/slim/trunk@122 7c53e7cc-98ea-0310-8f1f-a0b24da60408
sip 17 years ago
parent
commit
0002c2dcee
1 changed files with 5 additions and 1 deletions
  1. 5 1
      xinitrc.sample

+ 5 - 1
xinitrc.sample

@@ -1,3 +1,7 @@
+# the following variable defines the session which is started if the user
+# doesn't explicitely select a session
+DEFAULT_SESSION=twm
+
 case $1 in
 xfce4)
 	exec startxfce4
@@ -14,6 +18,6 @@ blackbox)
 	exec blackbox
 	;;
 *)
-	exec twm
+	exec $DEFAULT_SESSION
 	;;
 esac