You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
416 B
13 lines
416 B
[Unit]
|
|
Description=Remote desktop service (VNC)
|
|
|
|
[Service]
|
|
Type=simple
|
|
# wait for Xorg started by ${USER}
|
|
ExecStartPre=/bin/sh -c 'while ! pgrep -U "$USER" Xorg; do sleep 2; done'
|
|
ExecStart=/usr/bin/x0vncserver -rfbauth /home/${USER}/.vnc/passwd
|
|
# or login with your username & password
|
|
#ExecStart=/usr/bin/x0vncserver -PAMService=login -PlainUsers=${USER} -SecurityTypes=TLSPlain
|
|
|
|
[Install]
|
|
WantedBy=default.target
|