Ĉi tiu deponejo arĥiviĝis je 2024-01-29. Vi povas vidi kaj elŝuti dosierojn, sed ne povas puŝi nek raporti problemojn nek tirpeti.
shellTube/lib/st-video

29 lines
469 B
Plaintext
Raw Normal View History

2016-12-22 19:14:27 -06:00
#!/bin/sh
#####################
# Name: st-video.sh
# Date: 2016-12-22
# Lisc: ISC
# Main: jadedctrl
# Desc: Does a thing with
# a video-thingy thing
# dsfgbvesrht fd
#####################
2016-12-23 23:15:53 -06:00
if [ -e $HOME/.config/shelltube ]
2016-12-22 19:14:27 -06:00
then
2016-12-23 23:15:53 -06:00
. $HOME/.config/shelltube
fi
if test -z $player_cmd
2016-12-22 19:14:27 -06:00
then
2016-12-23 23:15:53 -06:00
if type "vlc" &> /dev/null
then
vlc "${1}"
elif type "mplayer" &> /dev/null
then
mplayer "${1}"
fi
2016-12-22 19:14:27 -06:00
else
2016-12-23 23:15:53 -06:00
$player_cmd "${1}"
2016-12-22 19:14:27 -06:00
fi