Initial commit with translated description

This commit is contained in:
2026-03-29 13:18:25 +08:00
commit 4ca4dbf396
19 changed files with 803 additions and 0 deletions

16
scripts/mouse_move.sh Normal file
View File

@@ -0,0 +1,16 @@
#!/bin/bash
# mouse_move.sh - Move mouse to coordinates
# Usage: mouse_move.sh X Y
export DISPLAY=:99
X=$1
Y=$2
if [ -z "$X" ] || [ -z "$Y" ]; then
echo "ERROR: Usage: mouse_move.sh X Y" >&2
exit 1
fi
xdotool mousemove --sync "$X" "$Y"
echo "Moved mouse to $X,$Y"