- Add docker-compose.vps.yml with hbbs + hbbr services - Update rustdesk-dummy.service with corrected binary path (/usr/share/...) - Update xorg-dummy.service without -nolisten local (fixes socket access) - Update install.sh for dummy driver + EDID fallback approach - Update README with dual setup (host + VPS) and server instructions - VPS: RustDesk Server runs via Docker on ports 21115-21119 - Public key: 5PxKX27ZTJGlu9KjU7YByXQDIw6zS8pKlvqxXsZiw8M=
18 lines
342 B
Desktop File
18 lines
342 B
Desktop File
[Unit]
|
|
Description=RustDesk with Dummy Display
|
|
After=xorg-dummy.service
|
|
Requires=xorg-dummy.service
|
|
|
|
[Service]
|
|
Type=simple
|
|
User=root
|
|
Environment="DISPLAY=:0"
|
|
Environment="XAUTHORITY=/root/.Xauthority"
|
|
ExecStartPre=/bin/sleep 3
|
|
ExecStart=/usr/share/rustdesk/rustdesk --server
|
|
Restart=always
|
|
RestartSec=10
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|