Hi people out there,
I'm encountering a funny issue with xdotool and i3wm.
Let me explain: if from within i3wm I do, in a console, `xdotool Super+2`, the result is the same as if I had typed `Super+Shift+2` on my keyboard. Trying to guess what's wrong, I ended with an hypothesis: may be that's because to input “2”, I have to press Shift+2 on my keyboard and may be that's why `xdotool Super+2` do what `xdotool Super+Shift+2`. Seems either xdotool or i3wm interprets “2” as “Shift+2” and not just the key which is “2”. Hence my question: how do one make xodotool to send a key‑code instead of a key‑symbol?
Note I don't know if this behaviour comes from xdotool proper or from i3wm instead.
I tried to do `xdotool Super+KP_2` instead of `xdotool Super+2`, but it does not work and just seems to send something looking like `^[[1;2B` and i don't know what it exactly means. At least, `KP_2` does not work as the key‑code pour the “2” key at the top of my laptop keyboard.