X-Git-Url: http://git.grml.org/?p=grml-x.git;a=blobdiff_plain;f=grml-x;h=a28a5fb283cbbdf3226ad117fee9231e2083fcfc;hp=62d2c5ae979ad5a5c9a7bd5ef56da238cce6c0be;hb=0b8b42c9650183d8043520731bab56edb40a94d4;hpb=adb532e01c23f7bf87da537310d06d58ad2c8a94 diff --git a/grml-x b/grml-x index 62d2c5a..a28a5fb 100755 --- a/grml-x +++ b/grml-x @@ -4,7 +4,6 @@ # Authors: grml-team (grml.org), (c) Michael Prokop # Bug-Reports: see http://grml.org/bugs/ # License: This file is licensed under the GPL v2. -# Latest change: Die Sep 04 01:44:19 CEST 2007 [mika] ################################################################################ # make sure /tmp is writeable {{{ @@ -911,14 +910,15 @@ function runit if [ -z "$DISPLAY" ] ; then print "$bold_color$fg[green]Now trying to run startx.$reset_color" startx $XINITRC -- $XOPTS + return 1 else print "$bold_color$fg[green]Now trying to run startx on display $DISPLAY.$reset_color" startx $XINITRC -- :$DISPLAY $XOPTS + return 1 fi else print "$bold_color$fg[blue]Not running startx as requested via option.$reset_color" fi - return 1 } # }}}