dotfiles/.local/bin/scripts/vp

5 lines
174 B
Plaintext
Raw Normal View History

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