view lib/localdisplay.py @ 1049:96f0a8b345aa

pi pushbutton device Ignore-this: 5bab6e8ad21fe4f24a2a92e6bc5678f3 darcs-hash:8f18d1b3736fc2abdf13430de797d852ed0e2c16
author drewp <drewp@bigasterisk.com>
date Tue, 02 Feb 2016 22:41:18 -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")