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