]> git.donarmstrong.com Git - kiibohd-kll.git/blob - layouts/md1Action.kll
Example kll map using CustomActions on MD1
[kiibohd-kll.git] / layouts / md1Action.kll
1 Name = md1Overlay;
2 Version = 0.1;
3 Author = "HaaTa (Jacob Alexander) 2015";
4 KLL = 0.3c;
5
6 # Modified Date
7 Date = 2015-08-16;
8
9 # Example of blocking ESC (0x29) when holding either Shift key
10 # Currently, kll only supports numbers (this may be fixed in a future kll spec)
11 U["LShift", "RShift"] : blockHold( 0x29 );
12 U"Esc" : blockKey( 0x29 );
13
14 # Now that Esc is blocked, it's possible to use this macro
15 U["LShift", "RShift"] + U"Esc" : '~';
16
17
18 U"Function2" : layerLock( 1 );
19 U"Function3" : action1();
20 U"Function4" : U"CapsLock";
21