Skip to content

Commit

Permalink
Example kll map using CustomActions on MD1
Browse files Browse the repository at this point in the history
  • Loading branch information
haata committed Aug 16, 2015
1 parent ea854aa commit 5f8880d
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions layouts/md1Action.kll
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
Name = md1Overlay;
Version = 0.1;
Author = "HaaTa (Jacob Alexander) 2015";
KLL = 0.3c;

# Modified Date
Date = 2015-08-16;

# Example of blocking ESC (0x29) when holding either Shift key
# Currently, kll only supports numbers (this may be fixed in a future kll spec)
U["LShift", "RShift"] : blockHold( 0x29 );
U"Esc" : blockKey( 0x29 );

# Now that Esc is blocked, it's possible to use this macro
U["LShift", "RShift"] + U"Esc" : '~';


U"Function2" : layerLock( 1 );
U"Function3" : action1();
U"Function4" : U"CapsLock";

0 comments on commit 5f8880d

Please sign in to comment.