Files
raspscreen/service-files/video.service

18 lines
548 B
SYSTEMD
Raw Normal View History

[Unit]
2026-02-04 13:44:47 +01:00
Description="Systemec RaspScreen"
Conflicts=presentation.service
After=graphical.target
[Service]
Type=simple
Environment=DISPLAY=:0
2026-01-15 16:48:03 +01:00
WorkingDirectory=/opt/raspscreen
2026-01-14 16:23:31 +01:00
ExecStartPre=/usr/bin/sleep 5
2026-01-15 16:48:03 +01:00
ExecStart=/bin/sh -c 'exec /usr/bin/vlc --fullscreen --loop --no-video-title --video-on-top --no-qt-fs-controller --qt-continue=0 $(find /opt/raspscreen/media \( -name "*.mp4" -o -name "*.mkv" -o -name "*.mov" -o -name "*.webm" \))'
ExecStop=/usr/bin/killall vlc
Restart=always
Restart=on-failure
RestartSec=2
[Install]
WantedBy=default.target