4 lines
174 B
Bash
Executable file
4 lines
174 B
Bash
Executable file
#!/bin/sh
|
|
# Kill and launch VLC with the given files
|
|
killall -q vlc
|
|
vlc --no-qt-error-dialogs --qt-start-minimized --qt-notification 0 --loop --random "$@" >/dev/null 2>&1 &
|