Skip to content

Instantly share code, notes, and snippets.

@u1i
Created June 4, 2024 06:09
Show Gist options
  • Save u1i/9f2c023d547511b45321c18d24011941 to your computer and use it in GitHub Desktop.
Save u1i/9f2c023d547511b45321c18d24011941 to your computer and use it in GitHub Desktop.
Mac: get mouse position
# pip3 install pyobjc
while true; do clear; echo "Mouse Position:"; python3 -c 'import Quartz.CoreGraphics as CG; print(CG.CGEventGetLocation(CG.CGEventCreate(None)))'; sleep 0.1; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment