keyboard USB

Mr E_T troll at arach.net.au
Wed Jan 18 08:53:43 PST 2006


On Wednesday 18 January 2006 23:10, david752004 wrote:
> Hello
> 
> I need to plug several USB keyboard on my laptop with fedora core 4.
> It works well, but all keyboards have the same layout, while I want a 
> different layout for each keyboard.
> 
> For example :     keyboard 1 -> us qwerty
>                            keyboard 2 -> greek...
> 
> I tried to change xorg.conf, but it did not work.
Must use the raw devices in the following from xorg.conf
Not tested but the basics should be there

Section "ServerLayout"
    Identifier  "Simple Layout"
    Screen "Screen 1"
    InputDevice "Mouse1" "CorePointer"
    InputDevice "Keyboard1" "CoreKeyboard"
    InputDevice "Keyboard2"
    InputDevice "Keyboard3"
EndSection

Section "InputDevice"
    Identifier  "Keyboard1"
    Driver      "kbd"
    Device	"/dev/..."
    Option      "Protocol" "Standard"
    Option      "AutoRepeat" "500 30"
    Option      "XkbLayout" "us"
EndSection

Section "InputDevice"
    Identifier  "Keyboard2"
    Driver      "kbd"
    Device	"/dev/..."
    Option      "Protocol" "Standard"
    Option      "AutoRepeat" "500 30"
    Option      "XkbLayout" "el_GR"
EndSection

Section "InputDevice"
    Identifier  "Keyboard3"
    Driver      "kbd"
    Device	"/dev/..."
    Option      "Protocol" "Standard"
    Option      "AutoRepeat" "500 30"
    Option      "XkbLayout" "ko"
EndSection

-- 
regs MR E_T
_______________________
\                      \
  \   OOHH I hate TYPOS  \
    \                      \
      ~~~~~~~~~~~~~~~~~~~~~~~



More information about the xorg mailing list