Run spice-vdagent with X11
On Devuan beowulf/ceres, for some reason spice-vdagent is not started when X11 is started. I found what appears to be a proper way to do it: write file /etc/X11/Xsession.d/60spice-vdagent.
# -*- sh -*-
# Xsession.d script to start spice-vdagent
#
# This file is sourced by Xsession(5), not executed.
__AGENT="$( which spice-vdagent 2>/dev/null )"
test -x "${__AGENT}" && "${__AGENT}" &
Maybe this should be included in the spice-vdagent package...
Comments