-
As my cfg expands I ran into problem, where after adding hokteys like Caps+Alt+[some_key], tap function of CapsLock breaks. No matter how I rearrange things, I can't make them both work. --- part of cfg ---
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
Hi,
|
Beta Was this translation helpful? Give feedback.
-
Thank you for your reply. As I do more testing using above order, results get more bizarre on my end. I'm running Mint 21.2 with Awesome WM and no other remapping tools. It's probably something with my setup. |
Beta Was this translation helpful? Give feedback.
-
Tested with only those 4 lines in cfg:
1 works only if Alt is held 1st then Caps and [key] or both mods pressed simultaneously. Side note: I don't run keymapper with -u option, just kill/reset everything with shell script. |
Beta Was this translation helpful? Give feedback.
I think I know what happens:
Holding
CapsLock
for a while pressesControl
, which is kept pressed untilCapsLock
is released.Then pressing
AltLeft
andJ
triggersMetaLeft{ArrowLeft}
.So effectively
Control{MetaLeft{ArrowLeft}}
is pressed which means nothing to your WM.Adding a
!Control
should make it work:(CapsLock AltLeft){J} >> !Control MetaLeft{ArrowLeft}