Letting LWIN used as modifier for OS and softwares but when we tap them, it will do Alt+Space #117
Unanswered
pegasusearl
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Can I make it so that tapping LWIN will press LALT+SPACE but if I hold LWIN and press something else, it will do LWIN+ThatKey+<another key if there is one being pressed>.
Perhaps during the holding of LWIN, it won't be sent to the OS until the other key is pressed.
I'm currently do it like this:
COMBO LWIN [.... .... .... ....] > sequence(&LALT_SPACE_^LALT)
but this only replace LWIN to ALT+SPACE, and I can't use LWIN for something else.
I tried this:
REWIRE LWIN LWIN sequence(&LALT_SPACE_^LALT)
but of course it doesn't work.I experimented:
REWIRE LWIN MOD9 sequence(&LALT_SPACE_^LALT)
, but it will press LWIN, which I did not expect. I thought with this, LWIN isn't supposed to be pressed at all. I assume it's becausesequence()
can't be used with REWIRE?Beta Was this translation helpful? Give feedback.
All reactions