mirror of
https://github.com/LizardByte/Sunshine.git
synced 2024-12-29 12:16:08 +00:00
14 lines
319 B
SYSTEMD
14 lines
319 B
SYSTEMD
|
[Unit]
|
||
|
Description=Remote desktop service (VNC)
|
||
|
|
||
|
[Service]
|
||
|
WorkingDirectory=/home/%u
|
||
|
Environment="DISPLAY=:0"
|
||
|
Type=simple
|
||
|
# wait for Xorg started by ${USER}
|
||
|
ExecStartPre=/bin/sh -c 'while ! pgrep Xorg; do sleep 2; done'
|
||
|
ExecStart=/home/%u/Github/sunshine/cmake-build-release/sunshine
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=default.target
|