Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How do you program what happens on key+Shift and key+Alt Gr? #65

Open
hmpf opened this issue Oct 22, 2016 · 1 comment
Open

How do you program what happens on key+Shift and key+Alt Gr? #65

hmpf opened this issue Oct 22, 2016 · 1 comment

Comments

@hmpf
Copy link

hmpf commented Oct 22, 2016

I use Us International layout. I'd like to add arrow keys to hjkl when pressing Alt Gr (RAlt). How do I do that? I'd also love to reprogram what Shift and Shift+Alt Gr does.

@kevinleguillou
Copy link

You can only do this by compiling the firmware yourself (#76), here's how :
https://github.com/kiibohd/controller/blob/master/Keyboards/README.md

In the KLL files where your keymappings are :

U"RALT" : U"RALT";

Add any macro as a new line using this syntax :

U"RALT" + U"H" : U"LEFT";
U"RALT" + U"J" : U"DOWN";
U"RALT" + U"K" : U"UP";
U"RALT" + U"L" : U"RIGHT";

voiqsbdov

You can find the detailed KLL documentation at https://input.club/kll/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants