X-Git-Url: http://git.bitcoin.ninja/index.cgi?p=youtube-dl;a=blobdiff_plain;f=youtube-dl.plugin.zsh;h=17ab1341af2244ece37551e8642936fd10891ac7;hp=5ecc6e124962ea5cf05039a921a94da89cf43ef3;hb=6cd452acffe8d79c895a2ebd0346e2ba7f9e112f;hpb=d1b30713fbea61427fb803696eeac5b51c4dad6e diff --git a/youtube-dl.plugin.zsh b/youtube-dl.plugin.zsh index 5ecc6e124..17ab1341a 100644 --- a/youtube-dl.plugin.zsh +++ b/youtube-dl.plugin.zsh @@ -1 +1,24 @@ -export PATH=${PATH}:$(dirname $0) +# This allows the youtube-dl command to be installed in ZSH using antigen. +# Antigen is a bundle manager. It allows you to enhance the functionality of +# your zsh session by installing bundles and themes easily. + +# Antigen documentation: +# http://antigen.sharats.me/ +# https://github.com/zsh-users/antigen + +# Install youtube-dl: +# antigen bundle ytdl-org/youtube-dl +# Bundles installed by antigen are available for use immediately. + +# Update youtube-dl (and all other antigen bundles): +# antigen update + +# The antigen command will download the git repository to a folder and then +# execute an enabling script (this file). The complete process for loading the +# code is documented here: +# https://github.com/zsh-users/antigen#notes-on-writing-plugins + +# This specific script just aliases youtube-dl to the python script that this +# library provides. This requires updating the PYTHONPATH to ensure that the +# full set of code can be located. +alias youtube-dl="PYTHONPATH=$(dirname $0) $(dirname $0)/bin/youtube-dl"