#!/usr/bin/env bash # necessary for Lynx browser video files # chmod +x and place in your PATH if grep -q "\#EXT3MU" $1 ; then # this is a playlist echo "Playing..." mpv --geometry=800x600 --title="Mpv" --playlist=$1 >/dev/null 2>&1 & exit else mpv --geometry=800x600 --title="Mpv" $1 >/dev/null 2>&1 & fi