kiibohd / KiiConf

Input Club web configurator, designed by matt3o.
http://configurator.input.club
GNU General Public License v3.0
92 stars 30 forks source link

Combination of Cmd/Ctrl/... with other keys? #91

Open edasque opened 6 years ago

edasque commented 6 years ago

Is it possible to set a key to say Cmd+Space? I can't seem to find a way to do so, it only ever takes one key as an input, not combinations

ColinTheRobot commented 6 years ago

ditto

hauntedhost commented 6 years ago

same

dmgm commented 6 years ago

Yes, it is possible. You need to look at the KLL spec and then add your code into the KLL custom box at the bottom of each layer in the configurator.

It will look something like;

U"LGUI" + U"SPACE" : U"ESC" ;

I'm not looking at the spec so the Keynames quoted above may not be right. ie is LGUI correct? The code above says cmd + space results in escape

You can find the spec at https://github.com/kiibohd/kll-spec