17 lines
529 B
Desktop File
17 lines
529 B
Desktop File
[Unit]
|
|
Description="Systemec RaspScreen"
|
|
Conflicts=presentation.service
|
|
After=graphical.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
Environment=DISPLAY=:0
|
|
WorkingDirectory=/opt/raspscreen
|
|
ExecStartPre=/usr/bin/sleep 5
|
|
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
|
|
RestartSec=2
|
|
|
|
[Install]
|
|
WantedBy=default.target |