Difference between revisions of "automate X keyboad and mouse with xdotool"

From thelinuxwiki
Jump to: navigation, search
(Created page with " move mouse 1 pixel every minute (to avoid screen timeouts or afk status) # while true; do; xdotool mousemove_relative --sync 0 1; sleep 60; done & category:automation")

Revision as of 13:33, 13 August 2013


move mouse 1 pixel every minute (to avoid screen timeouts or afk status)

# while true; do; xdotool mousemove_relative --sync 0 1; sleep 60; done &