Hi folks, a few days ago I had a problem setting up german keyboards on my new clients. I added this lines to my lts.conf:
XKB_TYPES = "default" XKB_COMPAT = "default" XKB_SYMBOLS = "de(nodeadkeys)" XKB_MODEL = "pc104" XKB_LAYOUT = "de" XKB_VARIANT = "nodeadkeys" XKB_OPTIONS = "" But this had now effect! After looking into rc.setupx I figured out, that only XKB_LAYOUT is used to generate the XF86Config. It this supposed to be the way it is right now? Well, I added a few lines to my rc.setupx and now it works! (You can find the diff attached to this mail) That's it for now ... Cheers, Christoph -- Christoph Thiel <[EMAIL PROTECTED]>
--- rc.setupx~ Sat Dec 1 01:45:11 2001 +++ rc.setupx Tue Aug 20 13:49:12 2002 @@ -138,7 +138,10 @@ Section "InputDevice" Identifier "Keyboard0" Driver "keyboard" - Option "XkbLayout" "${XkbLayout:-"us"}" + Option "XkbLayout" "de" + Option "XkbModel" "pc104" + Option "XkbRules" "xfree86" + Option "XkbVariant" "nodeadkeys" EndSection Section "InputDevice"