Is it possible to simulate a keystroke ("N") and a mouse click simultaneous in linux?
I use xdotool on fedora linux distro
I didn't find nothing related to this possibility
Later Edit :
I found the following workaround. I post it as someone might have a similar problem.
Even if the key is not pressed simultaneous with the click you can have it already pressed using :
<pseudocode>
keydown [options] keystroke - it will keep the key pressed.
Mouse click here.
keyup keystroke - it will release the key
In new versions you can do
xdotool keydown N click 1 keyup N
In older versions you can do as you edited:
xdotool keydown N
xdotool click 1
xdotool keyup N
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With