Created
June 13, 2019 12:58
-
-
Save ZJUGuoShuai/af379f274506e48417a1e8997dec3263 to your computer and use it in GitHub Desktop.
保持鼠标光标移动
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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