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

View File

@@ -0,0 +1,9 @@
#!/bin/bash
# cursor_position.sh - Get current mouse coordinates
export DISPLAY=:99
# Get mouse location
eval $(xdotool getmouselocation --shell 2>/dev/null)
echo "X=$X,Y=$Y"