Xorg was starting before udev could finish the monitor command. This prevented the X server from having access to the input devices. For some reason, any subsequent starts would be fine. Adding a small delay to the X server start and triggering a request for device events from the kernel after a delay seems to fix this issue.
16 lines
451 B
INI
16 lines
451 B
INI
|
|
[program:xorg]
|
|
priority=20
|
|
autostart=false
|
|
autorestart=true
|
|
user=root
|
|
command=/usr/bin/start-xorg.sh
|
|
environment=DISPLAY="%(ENV_DISPLAY)s",DISPLAY_DPI="%(ENV_DISPLAY_DPI)s",XDG_RUNTIME_DIR="%(ENV_XDG_RUNTIME_DIR)s"
|
|
stopsignal=INT
|
|
stdout_logfile=/home/%(ENV_USER)s/.cache/log/xorg.log
|
|
stdout_logfile_maxbytes=10MB
|
|
stdout_logfile_backups=7
|
|
stderr_logfile=/home/%(ENV_USER)s/.cache/log/xorg.err.log
|
|
stderr_logfile_maxbytes=10MB
|
|
stderr_logfile_backups=7
|