Ĉ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
2016-12-23 23:15:53 -06:00

29 lines
469 B
Bash
Executable File

#!/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
#####################
if [ -e $HOME/.config/shelltube ]
then
. $HOME/.config/shelltube
fi
if test -z $player_cmd
then
if type "vlc" &> /dev/null
then
vlc "${1}"
elif type "mplayer" &> /dev/null
then
mplayer "${1}"
fi
else
$player_cmd "${1}"
fi