Trovato questo:
install xdotool and:
from terminal
Up) xdotool mousemove_relative -- 0 -15
Down) xdotool mousemove_relative 0 15
Right) xdotool mousemove_relative 15 0
Left) xdotool mousemove_relative -- -15 0
Return) xdotool click 1
from xchainkeys (first install xchainkeys and edit ~/.config/xchainkeys/xchainkeys.conf)
W-z Up :group xdotool mousemove_relative -- 0 -15
W-z Down :group xdotool mousemove_relative 0 15
W-z Right :group xdotool mousemove_relative 15 0
W-z Left :group xdotool mousemove_relative -- -15 0
W-z Return :group xdotool click 1
W = mod4
from dwm
{ MODKEY, XK_Up, spawn, SHCMD("exec xdotool mousemove_relative -- 0 -15") },
{ MODKEY, XK_Down, spawn, SHCMD("exec xdotool mousemove_relative 0 15") },
{ MODKEY, XK_Right, spawn, SHCMD("exec xdotool mousemove_relative 15 0") },
{ MODKEY, XK_Left, spawn, SHCMD("exec xdotool mousemove_relative -- -15 0") },
{ MODKEY|ShiftMask, XK_Return, spawn, SHCMD("exec xdotool click 1") },