.xserverrc
author Oleksandr Gavenko <gavenkoa@gmail.com>
Thu, 17 Dec 2015 19:29:50 +0200 (2015-12-17)
changeset 780 053342666dc9
parent 277 38c4ac60b6fb
permissions -rw-r--r--
Add delay to flush any input so xorg doesn't disable DPMS power saving.
#!/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