2020-09-19 09:36:45 +02:00
|
|
|
#!/bin/sh
|
2022-01-10 11:52:17 +01:00
|
|
|
# Kill and launch VLC with the given files
|
2020-12-07 21:53:41 +01:00
|
|
|
killall -q vlc
|
|
|
|
vlc --no-qt-error-dialogs --qt-start-minimized --qt-notification 0 --loop --random "$@" >/dev/null 2>&1 &
|