diff --git a/ytloop.sh b/ytloop.sh index 870e7e2..8ec2161 100755 --- a/ytloop.sh +++ b/ytloop.sh @@ -1,3 +1,7 @@ VID=$1 +if [ -z $VID ] +then + exit +fi vlc $VID -./ytscroll.sh `./ytrelated.sh $VID` +./ytloop.sh `./ytrelated.sh $VID` diff --git a/ytscroll.sh b/ytscroll.sh index 03de32d..1f6c203 100755 --- a/ytscroll.sh +++ b/ytscroll.sh @@ -1,2 +1,3 @@ VID=`./ytsearch.sh $@` -vlc $VID && ./ytloop.sh $VID +vlc $VID +./ytloop.sh `./ytrelated.sh $VID`