slitaz-tools diff tinyutils/startx @ rev 930

Finish previous tiny edit
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Nov 25 00:41:01 2014 +0200 (2014-11-25)
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/tinyutils/startx	Tue Nov 25 00:41:01 2014 +0200
     1.3 @@ -0,0 +1,11 @@
     1.4 +#!/bin/sh
     1.5 +#
     1.6 +# Start X session on SliTaz GNU/Linux.
     1.7 +#
     1.8 +
     1.9 +if [ -f "$HOME/.xsession" ]; then
    1.10 +  exec $HOME/.xsession
    1.11 +else
    1.12 +  tazx
    1.13 +  exec $HOME/.xsession
    1.14 +fi