Skip to content

Instantly share code, notes, and snippets.

@ZJUGuoShuai
Created June 13, 2019 12:58
Show Gist options
  • Select an option

  • Save ZJUGuoShuai/af379f274506e48417a1e8997dec3263 to your computer and use it in GitHub Desktop.

Select an option

Save ZJUGuoShuai/af379f274506e48417a1e8997dec3263 to your computer and use it in GitHub Desktop.
保持鼠标光标移动
#!/bin/bash
LENGTH=1
DELAY=5
while true
do
for ANGLE in 0 90 180 270
do
xdotool mousemove_relative --polar $ANGLE $LENGTH
sleep $DELAY
done
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment