diff options
author | ben <benjaminfranzke@gmail.com> | 2010-02-25 20:34:46 +0100 |
---|---|---|
committer | ben <benjaminfranzke@gmail.com> | 2010-02-25 20:34:46 +0100 |
commit | d1021bc463bd19c1e0bd87c8652781b0b29f48cd (patch) | |
tree | f3815651c9c4b82c7a9c6e20e3a6e9cf916f1f7f /.xinitrc | |
parent | cb33da3194ef8a09085854406c92dbb6e4fd8c95 (diff) | |
download | dotfiles-d1021bc463bd19c1e0bd87c8652781b0b29f48cd.tar.gz dotfiles-d1021bc463bd19c1e0bd87c8652781b0b29f48cd.tar.bz2 dotfiles-d1021bc463bd19c1e0bd87c8652781b0b29f48cd.zip |
xinitrc: change parameter $1 to $2
this is due to changes in the xinit script
thats passes xterm as first argument
and the $1 of startx as $2
Diffstat (limited to '.xinitrc')
-rw-r--r-- | .xinitrc | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,5 @@ #chooser="/etc/X11/chooser.sh" #session=$(XSESSION="${1}" ${chooser}) #exec ${session:-$(${chooser})} -exec $(XSESSION="${1:-${XSESSION}}" /etc/X11/chooser.sh) + +exec $(XSESSION="${2:-${XSESSION}}" /etc/X11/chooser.sh) |