We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I would like to swap the plusminus ±/section § key on my keyboard with the tilde/backtick (also called grave) key. Here is a picture of my keyboard:
But in the xkeysnail/key.py file I don't find what the plusminus ±/section § key is called.
xkeysnail/key.py
I can remap the tilde/backtick (grave) keys like this:
K('GRAVE'):K("a"), K('Shift-GRAVE'):K("b"),
but how do I map them to ± and § ?
Thanks!
The text was updated successfully, but these errors were encountered:
Also looking for an answer to this. Did you ever find a solution @sebastian-ruiz?
Sorry, something went wrong.
define_keymap(lambda wm_class: True, { K("LShift-KEY_102ND"): K("LShift-GRAVE"), K("LShift-GRAVE"): K("LShift-KEY_102ND"), K("GRAVE"): K("KEY_102ND"), K("KEY_102ND"): K("GRAVE") } )
this seems to work for me for the same problem guys.
if anyone else needs to work out what the xkeysnail is receiving, i managed it by running the binary from the cli
sudo xkeysnail ~/.config/kinto/kinto.py (i am using kinto)
sudo xkeysnail ~/.config/kinto/kinto.py
then watch the logs as you press the relevant keys
🙏
No branches or pull requests
I would like to swap the plusminus ±/section § key on my keyboard with the tilde/backtick (also called grave) key. Here is a picture of my keyboard:
But in the
xkeysnail/key.py
file I don't find what the plusminus ±/section § key is called.I can remap the tilde/backtick (grave) keys like this:
but how do I map them to ± and § ?
Thanks!
The text was updated successfully, but these errors were encountered: