xrandr falla cuando se ejecuta desde udev

xrandr falla cuando se ejecuta desde udev

El siguiente extracto de un script de Python 3 "myscript" destinado a detectar el diseño de la pantalla y actualizarlo usando xrandr funciona bien cuando se ejecuta con sudo /usr/local/bin/myscripto /usr/local/bin/myscript:

xrandr_cmd = Popen("xrandr", shell=True, stdout=PIPE, stderr=STDOUT)

Sin embargo, cuando se ejecuta como resultado de la siguiente regla udev:

ACTION="change", SUBSYSTEM="drm", ENV{HOTPLUG}=="1", RUN+="/usr/local/bin/myscript"

falla, indicando que xrandr ha devuelto 1 con el mensaje "No se puede abrir la pantalla".

¿Alguien sabe por qué xrandr fallaría cuando se ejecuta desde una regla udev?

El guión completo, para aquellos que tengan curiosidad:

#! /usr/bin/env python3
import os
from subprocess import Popen, PIPE, STDOUT

def log(s):
    home_dir = os.path.expanduser("~")
    #with open (f"{home_dir}/monitor_script.log", "a+") as f:
    with open (f"/home/vedantroy/monitor_script.log", "a+") as f:
        f.write(s)
xrandr = "/usr/bin/xrandr"
xrandr_cmd = Popen(xrandr, shell=True, stdout=PIPE, stderr=STDOUT)
retval = xrandr_cmd.wait()
lines = map(lambda l: l.decode('ascii'), xrandr_cmd.stdout.readlines())
if retval != 0:
    nl = "\n"
    log(f"xrandr returned {retval} with output:\n{nl.join(lines)}")
else:
    layout_cmds = [
        # No monitors plugged in
        f"{xrandr} --auto",
        # Thinkpad T580
        # Monitor plugged into HDMI port
        # Monitor to right of laptop
        f"{xrandr} --output HDMI2 --primary --auto --right-of eDP1"
    ]
    layout = 0
    for line in lines:
        if "HDMI2 connected" in line:
            layout = 1
            break

    layout_cmd_str = layout_cmds[layout]
    layout_cmd = Popen(layout_cmd_str, shell=True)
    retval = layout_cmd.wait()
    if retval != 0:
        log(f"{layout_cmd_str} returnd {retval}")

Respuesta1

udev no tiene acceso a X, hay que darle la variable de entorno DISPLAYand XAUTHORITY:

KERNEL=="card0", SUBSYSTEM=="drm", ACTION=="change", ENV{DISPLAY}=":0", ENV{XAUTHORITY}="/home/ben/.Xauthority", RUN+="/bin/bash /path/to/script.sh"

(Tomado dehttps://frdmtoplay.com/i3-udev-xrandr-hotplugging-output-switching/)

Por supuesto, debes ajustar la ruta al .Xauthorityarchivo y al script.

información relacionada