hcra/server/backends/x11.py
Samuel Sloniker a67f765bd2 Move parts of backends into new imgproc.py
A lot of code was unnecesarily shared between the backends. This places
much of that code in a new file, `imgproc.py`
2021-06-17 19:50:16 -07:00

22 lines
448 B
Python

import os
import threading
import time
def _long_touch(x, y):
os.system(f'xdotool mousemove {x} {y} mousedown 1')
time.sleep(2)
os.system(f'xdotool mouseup 1')
def get_img():
os.system('xwd -root -silent | convert xwd:- img.bmp')
return 'img.bmp'
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')