wok view karmen/stuff/karmen-session @ rev 10835

lua: improve receipt and build optimisation
author Christophe Lincoln <pankso@slitaz.org>
date Wed Jun 08 23:16:35 2011 +0200 (2011-06-08)
parents
children cb76ed027bff
line source
1 #!/bin/sh
2 #
3 # Start Karmen X session on SliTaz
4 #
6 CONFIG_DIR="$HOME/.config/karmen"
7 AUTOSTART_SCRIPT="${CONFIG_DIR}/autostart.sh"
9 # These file are provided by SliTaz to provide a better experience
10 # with Karmen. Autostart script for applications and Wbar with a logout
11 # icon.
12 if [ ! -d "$CONFIG_DIR" ]; then
13 cp -a /etc/xdg/karmen $CONFIG_DIR
14 fi
16 # Source autostarted applications.
17 . $AUTOSTART_SCRIPT
19 # Execute the Window manager.
20 exec karmen
22 exit 0