.xserverrc
author Oleksandr Gavenko <gavenkoa@gmail.com>
Wed, 11 Jul 2018 18:27:19 +0300
changeset 905 90d1d342a896
parent 277 38c4ac60b6fb
permissions -rw-r--r--
Make copy of ~/.bash_profile instead symlink as Cygwin installation conflicts with WSL: bash: symlink: No such file or directory

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