#!/bin/sh
#
# Cub'x Window default .xinitrc
#
#

#
# Set the path
#
PATH=/usr/local/xview/bin:/usr/bin/X11:$PATH
export PATH


#
# Set the mouse speed
# The first number is the mouse acceleration
# The second number is in how mush pixel the acceleration takes place.
#
# Use this when running without NeXTSTEP
#/usr/bin/X11/xset m 4 2

#
# Launch the window manager  
#
#/usr/bin/X11/mwm &
#/usr/bin/X11/twm &
#/usr/bin/X11/olwm &
/usr/bin/X11/olvwm -3d &

# Redefine the Backspace key for emacs to send ^? instead of ^H  
xmodmap -e "keysym BackSpace = Delete"

#
# Run the login shell. 
#
/usr/bin/X11/xterm -bg "#c0ffe0" -fg "#001111" -name Login -j -s -sb -tm "erase ^H" -geometry 80x25+620+470 -title "NeXT login" -iconic 

#
# Waiting for the xterm death
#

#
# Kill all process to return to NextStep  when running without ns
#
# Use this when running without NeXTSTEP
#/usr/bin/X11/endx

#












