13 lines
381 B
Python
13 lines
381 B
Python
#! python3
|
|
|
|
#This displays the location of the mouse in a loop
|
|
import pyautogui, sys
|
|
print('Press Ctrl-C to quit.')
|
|
try:
|
|
while True:
|
|
x, y = pyautogui.position()
|
|
positionStr = 'X: ' + str(x).rjust(4) + ' Y: ' + str(y).rjust(4)
|
|
print(positionStr, end='')
|
|
print('\b' * len(positionStr), end='', flush=True)
|
|
except KeyboardInterrupt:
|
|
print('\n') |