dunkarooftop

Results 59 comments of dunkarooftop

Karabiner does not work with Sierra. Please use Karabiner-Element

Karabiner it NOT support under macOS Sierra, please check out "Karabiner-element"

You need to use applescript, I came pretty close, but need to go to bed. Will take another crack at it again tomorrow. Test this one out 1st see if...

This is a cleaner version. With the applescript I was trying to simulate simultaneous key presses "h" and "m" together but failed. The code above and below do exactly the...

The order of the mod matter here, try this. I only modify ```K``` to ```J``` in the 2nd `````` ``` __KeyToKey__ KeyCode::J, ModifierFlag::OPTION_R, KeyCode::KEY_9, ModifierFlag::SHIFT_R ``` OR (do not do...

Now I look at it again you can just move the 2nd `````` above the 1st one would work too. Many different way to archive the same goal, still refer...

Add ```ModifierFlag::NONE``` When you define your virtual key. search ```ModifierFlag::NONE``` in the doc you will see some example https://pqrs.org/osx/karabiner/xml.html

https://pqrs.org/osx/karabiner/xml.html.en Here if the official doc. I am afraid if the event viewer can't see it you won't be able to change it.

``` Change "Ins" to Modifier private.change.ins.to.modifier __KeyToKey__ KeyCode::PC_INSERT, KeyCode::COMMAND_L, ``` The code above change "Ins" to "Left command", you can change the line "COMMAND_L" to other modifier to fit your...

There are couple way to solve your problem. You can use `````` block to limited the mod to only effect the exterinal keyboard. doc here https://pqrs.org/osx/karabiner/xml.html.en scroll down to "Specify...