.xserverrc
author Oleksandr Gavenko <gavenkoa@gmail.com>
Sun, 18 Dec 2011 17:47:04 +0200
changeset 277 38c4ac60b6fb
parent 276 eb428b5e125a
permissions -rw-r--r--
Pass all args to X.

#!/bin/sh

# http://tldp.org/HOWTO/XWindow-User-HOWTO/runningx.html

if [ -n "$WINDIR" -o "$TERM" = cygwin ]; then
  # Probably under Cygwin.
  exec XWin -multiwindow -clipboard -silent-dup-error -xkblayout "us,ru" -xkboptions "grp:caps_toggle" "$@"
elif [ -f /etc/debian_version ]; then
  exec /usr/bin/X -nolisten tcp "$@"
else
  exec X -nolisten tcp "$@"
fi