-
```
If I do something like:
xdotool mousemove 0 0 &&
xdotool mousedown 1 &&
xdotool mousemove 10 10 &&
xdotool mouseup 1
I expect the mouse to drag something from (0,0) to (10,10). …
-
I added this feature by appending this line to `bin/run`:
```sh
xdotool key ctrl+v
```
It does add a dependency but xdotool supports both linux and OSX.
-
some way to link a keybinding to a function or bash script?
# use xdotool to yank the url of the playing vid
xdotool key y
xdotool key y
mpv _URI
-
The `getwindowname` option is very useful, but sometimes it would be useful to be able to get the class of a window, knowing its ID
-
The same happens with the `key` command.
Here's an example terminal command with output.
```
$ xdotool type --clearmodifiers smallletters
SMALLLETTERS
$ xdotool type --clearmodifiers BIGLETTERS
BIGLE…
-
As tested on two different machines running Ubuntu 18.04 (gnome) and NixOS 20.03 (KDE), respectively, for version `3.20160805.1`, the following command hangs my computer for 9 seconds:
```
xdotool…
-
xdotool doesn't seem to set the right case on certain characters.
```
$ xdotool type áÁÅÄÀAĀȦĄ
ááåäàAĀȦĄ
$ xdotool type áÁÅÄÀAĀȦĄ (holding shift)
ÁÁÅÄAĀȦĄ
```
Also, if I compile it myself, I get the…
-
Using openbox on Ubuntu Trusty. If I do a command like:
```
sleep 2; for wid in `xdotool search --class QtCreator`; do xdotool key --window $wid exclam; done
```
...and click the window (QtCreator i…
mknln updated
8 years ago
-
First without and then with numlock:
![-bin-bash_008](https://user-images.githubusercontent.com/3252315/32374693-15dc1780-c09f-11e7-9795-8d58791a41e9.jpg)
-
I tried to set this up on Fedora 36 and the copy-references does not work.
I followed your instructions and had issues at the following points:
1. `exiftool` does not exist, but there is `perl-I…