.xserverrc
author Oleksandr Gavenko <gavenkoa@gmail.com>
Fri, 07 Apr 2017 18:37:28 +0300
changeset 850 49512a5aea3a
parent 277 38c4ac60b6fb
permissions -rw-r--r--
Wrap around left/right boundaries when moving window.

#!/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