flavors view jwm/rootfs/etc/skel/.xinitrc @ rev 190

Add a JWM flavor (Example to use different WM than OpenBox)
author Christophe Lincoln <pankso@slitaz.org>
date Thu Jan 02 21:11:43 2014 +0100 (2014-01-02)
parents
children
line source
1 # ~/.xinitrc: Executed by Slim/LXDM login manager to startx X session.
2 # You can use F1 with Slim to change your window manager or configure
3 # it permanently with your personal applications.conf file.
4 #
5 . $HOME/.config/slitaz/applications.conf
7 [ "$1" ] && WINDOW_MANAGER="$1"
9 case "$WINDOW_MANAGER" in
10 openbox|lxde*|xfce4|compiz|karmen|dwm|fluxbox*)
11 exec ${WINDOW_MANAGER%-session}-session ;;
12 razor*)
13 exec razor-session ;;
14 enlightenment)
15 exec enlightenment_start ;;
16 *)
17 exec $WINDOW_MANAGER ;;
18 esac