13 lines
467 B
Markdown
13 lines
467 B
Markdown
# systemd service files
|
|
|
|
Copy these into `/etc/systemd/user`. Unless your DroidCam setup matches mine exactly, you'll have to adapt the command in [`droidcam.service`](./droidcam.service).
|
|
|
|
Run the following commands (not as root):
|
|
|
|
```bash
|
|
systemctl --user daemon-reload
|
|
systemctl --user enable --now droidcam.service
|
|
systemctl --user enable --now droidcam-streamer.service
|
|
loginctl enable-linger # Enables the services to run when you're not actively logged in
|
|
```
|