blob: 9da5cb70ce7328824ea978ce1630d7cc7e346e04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Up
"xdotool mousemove_relative --sync -- 0 -24"
alt + w
# Left
"xdotool mousemove_relative --sync -- -24 0"
alt + a
# Down
"xdotool mousemove_relative --sync -- 0 24"
alt + s
# Right
"xdotool mousemove_relative --sync -- 24 0"
alt + d
# left + up
"xdotool mousemove_relative --sync -- -24 -24"
Shift+alt + q
# right + up
"xdotool mousemove_relative --sync -- 24 -24"
Shift+alt + e
# right + down
"xdotool mousemove_relative --sync -- 24 24"
Shift+alt + d
# left + down
"xdotool mousemove_relative --sync -- -24 24"
Shift+alt + a
|