hcra/server/backends/x11.py

22 lines
448 B
Python
Raw Normal View History

2021-06-15 12:50:51 -07:00
import os
import threading
import time
2021-06-15 12:50:51 -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
def get_img():
os.system('xwd -root -silent | convert xwd:- img.bmp')
return 'img.bmp'
2021-06-15 12:50:51 -07:00
def touch(x, y, is_long):
if is_long:
threading.Thread(target=_long_touch, args=(x, y,)).start()
else:
os.system(f'xdotool mousemove {x} {y} click 1')