Spice
Создать сервис systemd
cat << 'EOF' > /etc/systemd/system/x11spice.service [Unit] Description=x11spice Requires=network-online.target After=network-online.target [Service] Restart=always RestartTimeout=3 ExecStart=/usr/bin/x11spice --allow-control --password=qwerty --hide --display=:0 User=user Group=user [Install] WantedBy=multi-user.target EOF
Включить сервис на автозапуск
systemctl daemon-reload systemctl enable --now x11spice.service