Skip to content

Instantly share code, notes, and snippets.

@rochacbruno
Last active August 1, 2024 16:09
Show Gist options
  • Save rochacbruno/cf3685bba608c5b81d3c1046255af3bd to your computer and use it in GitHub Desktop.
Save rochacbruno/cf3685bba608c5b81d3c1046255af3bd to your computer and use it in GitHub Desktop.

Map Caps Lock key to be quote symbols

tap = ' tap tap = " hold = """

if_tap(
    if_tap(
        modify(
           Shift_L, 
           modify(
             ISO_Level3_Shift, 
             key(dead_acute)
           )
        ), 
        modify(ISO_Level3_Shift, key(dead_acute))
    ), 
    repeat(
       3,
       modify(
           Shift_L, 
           modify(
             ISO_Level3_Shift, 
             key(dead_acute)
           )
        )   
    )
)

Map shift + Caps to 3 backticks

repeat(6, key(dead_grave))

Remap Kensington Trackball Keys

Button MIDDLE = Super_L + Tab
Button RIGHT = BTN_MIDDLE
Button SIDE = BTN_RIGHT
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment