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

Update linux-libre according to changes made to linux
author Antoine Bodin <gokhlayeh@slitaz.org>
date Thu Mar 01 17:57:00 2012 +0100 (2012-03-01)
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