diff options
Diffstat (limited to 'scripts/tablet')
-rwxr-xr-x | scripts/tablet | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/tablet b/scripts/tablet index 009395a..7e91a55 100755 --- a/scripts/tablet +++ b/scripts/tablet @@ -22,11 +22,12 @@ tablet_ratio = (lambda s: float(s[0]) / float(s[1]))(sys.argv[4].split(":")) if screens = [ (0, 0, 1920, 1080), + (1920, 0, 2560, 1440), ] #TODO find this with xrandr -target = screens[0] +target = screens[1] #Physical offset of the selected screen offsetx = target[0] @@ -34,7 +35,7 @@ offsety = target[1] #Size of the full screen areas sh = 1080 -sw = 1920 +sw = 1920 + 2560 #TODO calculate using list of screens #Aspect ratio of the tablet, to avoid weird scaling problems |