#! /bin/sh
#
#  Start up the default X11 environment
#
#  See the X11 manual page if you want to customise your environment.

#
#  Load defaults into the server before starting anything else.
#
xrdb -load $HOME/.X11defaults

#
#  Disable caps lock wherever possible.
xmodmap -e 'remove Lock = Caps_Lock' -e 'keysym BackSpace = Delete'

#
#  Start up standard windows in the background.
#  See the defaults file loaded in the previous section for the
#  window sizes.
#
xterm -name xterm -geometry 80x24+0+0 &

xclock -name xclock -analog -geometry 100x100-0+0 &

#
#  Start the window manager.
#
exec twm
