Is it possible to plug in 2 keyboards and have one with Dvorak layout and the other with QWERTY layout? (On OSX)

link|improve this question

50% accept rate
Lets ponder the bigger question--What is the deal with the paired programming? Paired programming is a sure-fire way to get half as much done in twice the time. – Stargazer712 Nov 11 '10 at 16:31
are you expecting to have two people typing simultaneously? or just so if one makes a mistake the other can correct, and is more comfortable with another type of keyboard? (I'm sorry I don't actually know the answer, but I'd like to understand the reasoning at least) – onaclov2000 Nov 11 '10 at 16:34
The typematrix.com/shop is a great keyboard, with a physical switch to Dvorak mode. – Simon Rentzke Jan 10 '11 at 1:05
feedback

3 Answers

up vote 0 down vote accepted

Not, as far as I know, using the basic OS X setup. If you want to modify a kext you can do it. I would suggest you get the Dvorak keyboard as hardware Dvorak, not software Dvorak, as in this case your setup will work as expected.

link|improve this answer
feedback

You can do it with any hard-wired Dvorak or remapable keyboard.

The Kinesis Advantage should do the trick. It has both QWERTY and Dvorak modes but it's quite expensive (300$) and the layout may not be for everyone.

link|improve this answer
feedback

You can do this Linux in X Windows, and this may also apply OSX (another X Windows-based operating system).

Find the device ID of the keyboard to change:

$ xinput -list | grep -i key
⎣ Virtual core keyboard                     id=3    [master keyboard (2)]
    ↳ Virtual core XTEST keyboard               id=5    [slave  keyboard (3)]
    ↳ Power Button                              id=6    [slave  keyboard (3)]
    ↳ Power Button                              id=7    [slave  keyboard (3)]
    ↳ LITEON Technology USB Keyboard            id=9    [slave  keyboard (3)]
    ↳ LITEON Technology USB Keyboard            id=10   [slave  keyboard (3)]

Then change the layout using setxkbmap:

$ setxkbmap -device 9 dvorak
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.