74 lines
1.1 KiB
Text
74 lines
1.1 KiB
Text
# mouse movement
|
|
|
|
super + F7
|
|
xdotool mousemove_relative -- -16 0
|
|
|
|
super + F9
|
|
xdotool mousemove_relative 16 0
|
|
|
|
super + F3
|
|
xdotool mousemove_relative 0 -16
|
|
|
|
super + F8
|
|
xdotool mousemove_relative 0 16
|
|
|
|
|
|
super + control + F7
|
|
xdotool mousemove_relative -- -256 0
|
|
|
|
super + control + F9
|
|
xdotool mousemove_relative 256 0
|
|
|
|
super + control + F3
|
|
xdotool mousemove_relative 0 -256
|
|
|
|
super + control + F8
|
|
xdotool mousemove_relative 0 256
|
|
|
|
|
|
super + shift + F7
|
|
xdotool mousemove_relative -- -2 0
|
|
|
|
super + shift + F9
|
|
xdotool mousemove_relative 2 0
|
|
|
|
super + shift + F3
|
|
xdotool mousemove_relative 0 -2
|
|
|
|
super + shift + F8
|
|
xdotool mousemove_relative 0 2
|
|
|
|
|
|
super + control + shift + F7
|
|
xdotool mousemove_relative -- -64 0
|
|
|
|
super + control + shift + F9
|
|
xdotool mousemove_relative 64 0
|
|
|
|
super + control + shift + F3
|
|
xdotool mousemove_relative 0 -64
|
|
|
|
super + control + shift + F8
|
|
xdotool mousemove_relative 0 64
|
|
|
|
|
|
# F13 = left click
|
|
XF86Tools
|
|
xdotool click 1
|
|
|
|
# F14 = right click
|
|
XF86Launch5
|
|
xdotool click 3
|
|
|
|
# F15 = middle click
|
|
XF86Launch6
|
|
xdotool click 2
|
|
|
|
# F16 = scroll up
|
|
XF86Launch7
|
|
xdotool click 4
|
|
|
|
# F17 = scroll down
|
|
XF86Launch8
|
|
xdotool click 5
|
|
|