Hi,

I am unable to run Apple X11 with a french keyboard and use my three button mouse (in preferences of Apple X11 check or uncheck the item "emulate three button mouse" do nothing for me ), how can I do that?

This my xinit.rc file:

#!/bin/sh
# $Xorg: xinitrc.cpp,v 1.3 2000/08/17 19:54:30 cpqbld Exp $

userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/usr/X11R6/lib/X11/xinit/.Xresources
sysmodmap=/usr/X11R6/lib/X11/xinit/.Xmodmap

# merge in defaults and keymaps

if [ -f $sysresources ]; then
xrdb -merge $sysresources
fi

if [ -f $sysmodmap ]; then
xmodmap $sysmodmap
fi

if [ -f $userresources ]; then
xrdb -merge $userresources
fi

if [ -f $usermodmap ]; then
xmodmap $usermodmap
fi


if [ X$DISPLAY = "X:0" ]; then

#
# Assume Apple X11 and start up accordingly
#

/usr/X11R6/bin/xterm -geometry 80x20+0+0 -sb &
exec /usr/X11R6/bin/quartz-wm
else
#
# Assume XDarwin
#
# Environment with gnome
#
/sw/bin/autocutsel &
exec /sw/bin/gnome-session


# Environment with WindowMaker
#exec wmaker

# Environment with KDE
#exec startkde

fi

Thanks for suggestions

J-M



-------------------------------------------------------
This SF.NET email is sponsored by: Take your first step towards giving your online business a competitive advantage. Test-drive a Thawte SSL certificate - our easy online guide will show you how. Click here to get started: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0027en
_______________________________________________
Fink-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-users

Reply via email to