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

Changed libwebkit to compile with -j1. This is a fix cause it will not compile right the first time with jobs set to 4. I also remove webkit-r-dev for build depend. Thats not needed.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Oct 13 03:29:24 2010 +0000 (2010-10-13)
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