My script files

18 lines
446 B

#!/bin/sh
ext="${1##*.}"
images="png jpg jpeg"
videos="mkv mp4 gif"
download="mp3 flac pdf"
if echo $1 == *youtu* ; then
tsp mpv --quiet "$1" > /dev/null &
if echo $images | grep -w $ext > /dev/null; then
tsp feh "$1" > /dev/null &
elif echo $videos | grep -w $ext > /dev/null; then
tsp mpv --quiet "$1" > /dev/null &
elif echo $download | grep -w $ext > /dev/null; then
tsp wget "$1" > /dev/null &
else
tsp $BROWSER "$1" > /dev/null &
fi