dotfiles/.local/bin/scripts/vp

5 lines
174 B
Text
Raw Normal View History

#!/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 &