diff options
| author | Josh Rahm <rahm@google.com> | 2021-10-13 11:30:59 -0600 |
|---|---|---|
| committer | Josh Rahm <rahm@google.com> | 2021-10-13 11:30:59 -0600 |
| commit | c45d36eaa6be336e64e19f64bcdeacaa18cacce2 (patch) | |
| tree | 34cb8c3db209882b3c47b68721abfb75f29e3873 /jrcompat | |
| parent | 86c703259c64458fa79976c75bc0684b5840d058 (diff) | |
| download | rkb-c45d36eaa6be336e64e19f64bcdeacaa18cacce2.tar.gz rkb-c45d36eaa6be336e64e19f64bcdeacaa18cacce2.tar.bz2 rkb-c45d36eaa6be336e64e19f64bcdeacaa18cacce2.zip | |
Remove modifiers for "visual" and "mouse" modes.
Swap Hyper and Super. Hyper is supported by XMonad, but not by many
other applications, thus, I'd like to leave the more widely supported
Super key available for mapping in individual applications and use Hyper
to control XMonad.
Add indications via Caps and Num Lock LEDs that I'm in "Vi" mode.
Diffstat (limited to 'jrcompat')
| -rw-r--r-- | jrcompat | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -8,6 +8,26 @@ default xkb_compatibility "jrcompat" { augment "level5" augment "caps(caps_lock)" + indicator "Caps Lock" { + modifiers = None; + groups = all-group1; + }; + + indicator "Num Lock" { + modifiers = None; + groups = all-group1; + }; + + indicator "Scroll Lock" { + modifiers = None; + groups = all-group1; + }; + + indicator "Misc" { + modifiers = None; + groups = all-group1; + }; + interpret User { action= LockGroup(group=2); }; |