Warning: this is an htmlized version!
The original is here, and
the conversion rules are here.
#!/bin/sh
# This file:
#   http://angg.twu.net/.xinitrc.debian.html
#   http://angg.twu.net/.xinitrc.debian
#           (find-angg ".xinitrc.debian")
# Author: Eduardo Ochs <eduardoochs@gmail.com>
#
# (find-angg ".xinitrc.redhat")
# (find-fline "~/" ".xinitrc")
# (eev "cd; ln -sf .xinitrc.debian .xinitrc; laf .xinitrc")
#
# (defun e () (interactive) (find-angg ".xinitrc.debian"))

# «guest_users»
# (find-angg ".zshrc" "inix-lea")
# (find-angg "LEA/.xinitrc")
if [ "$GUEST_USER" == "lea" ]; then
  exec sh ~/LEA/.xinitrc
fi

xmodmap -e 'keycode 0x6D = Multi_key'
# (find-es "x" "Multi_key")

xmodmap -e "keycode 64 = Meta_L"
# (find-es "x" "emacs_x_keys")

xmodmap -e 'keycode 0x16 = BackSpace'
# From kaig's hint. Use xev to find the keycode, then hex it.

# (find-es "x" "X_with_mathfont")
# (find-angg ".zshrc" "X")
xset fp default
xset fp+ ~/MTA/
xset fp rehash

# gnome-session &
fvwm2 &
# enlightenment &
# startkde &
#
# «xauth»
# (find-man "xauth" "nextract")
# (find-man "xauth" "nmerge")
# This block obviously supposes that there's an "edrx" user than we
# can "su" to.
xauth nextract /tmp/xauth_$DISPLAY $DISPLAY
chmod 666      /tmp/xauth_$DISPLAY
su -s /usr/X11R6/bin/xauth edrx nmerge /tmp/0.0
#
exec xterm


# Local Variables:
# coding: raw-text-unix
# End: