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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
- {{ ansible_managed | comment }}
-
- #
- # /usr/lib/systemd/user/vncserver@.service
- #
- # 1. Switches for vncserver should be entered in ~/.vnc/config rather than
- # hard-coded into this unit file. See the vncserver(1) manpage.
- #
- # 2. Users wishing for the server to continue running after the owner logs
- # out MUST enable 'linger' with loginctl like this:
- # `loginctl enable-linger username`
- #
- # 3. The server can be enabled and started like this once configured:
- # `systemctl --user start vdesk@:<display>.service`
- # `systemctl --user enable vdesk@:<display>.service`
-
- [Unit]
- Description=vdesk service - display %i
- After=syslog.target network.target
-
- [Service]
- Type=forking
- ExecStartPre=/bin/sh -c '/usr/bin/vncserver -kill %i > /dev/null 2>&1 || :'
- ExecStart=/usr/bin/fish -c "/usr/bin/vncserver -xstartup ~/.xsession.fish %i"
- ExecStop=/usr/bin/vncserver -kill %i
-
- [Install]
- WantedBy=default.target
|