2021-06-15 12:50:51 -07:00
|
|
|
import os
|
|
|
|
import threading
|
2021-06-17 14:33:40 -07:00
|
|
|
import time
|
2021-06-15 12:50:51 -07:00
|
|
|
|
|
|
|
|
2021-06-17 19:50:16 -07:00
|
|
|
def _long_touch(x, y):
|
|
|
|
os.system(f'xdotool mousemove {x} {y} mousedown 1')
|
|
|
|
time.sleep(2)
|
|
|
|
os.system(f'xdotool mouseup 1')
|
|
|
|
|
2021-06-15 12:50:51 -07:00
|
|
|
|
2021-06-17 19:50:16 -07:00
|
|
|
def get_img():
|
|
|
|
os.system('xwd -root -silent | convert xwd:- img.bmp')
|
|
|
|
return 'img.bmp'
|
2021-06-15 12:50:51 -07:00
|
|
|
|
|
|
|
|
2021-06-17 19:50:16 -07:00
|
|
|
def touch(x, y, is_long):
|
2021-06-17 14:33:40 -07:00
|
|
|
if is_long:
|
2021-06-17 19:50:16 -07:00
|
|
|
threading.Thread(target=_long_touch, args=(x, y,)).start()
|
2021-06-17 14:33:40 -07:00
|
|
|
else:
|
|
|
|
os.system(f'xdotool mousemove {x} {y} click 1')
|