Mercurial > code > home > repos > homeauto
view lib/localdisplay.py @ 1044:724cb8ea49b4
case check error
Ignore-this: 7d175ad43bbf538c1ba32e6ee0b64e2d
darcs-hash:bf8630b887e1e2bc4488aa2708c1dc0a3ada04e5
author | drewp <drewp@bigasterisk.com> |
---|---|
date | Mon, 01 Feb 2016 03:09:08 -0800 |
parents | 3184772368a5 |
children | 3657e3f0d5d0 |
line wrap: on
line source
import psutil, os def setDisplayToLocalX(): """ set DISPLAY env var in this process to the id of the X process on localhost I might need something like xauth merge /run/gdm/auth-for-gdm-xxxxxx/database too and this isn't automated yet """ for pid in psutil.get_pid_list(): try: proc = psutil.Process(pid) if proc.exe not in ['/usr/bin/Xorg', '/usr/bin/X', '/usr/bin/X11/X']: continue except (psutil.error.AccessDenied, psutil.error.NoSuchProcess): continue display = [arg for arg in proc.cmdline if not arg.startswith('-')][1] if display == 'tcp': # ?? display = ":0.0" assert display.startswith(':'), display os.environ['DISPLAY'] = display break else: raise ValueError("didn't find an Xorg process")