X-Git-Url: https://git.xandkar.net/?a=blobdiff_plain;f=home%2Flib%2Flogin_functions.sh;h=41f44b8adb0a4167cc7c6110bf3cb5b441db14fe;hb=60e43329ff66d755fee1f307381d5582d5362445;hp=b8e9f418da8a888e3111ddd0e1a4f7b18fd684a9;hpb=f19243832b4a06cac88b1f7ec79486b627c0be2f;p=khome.git diff --git a/home/lib/login_functions.sh b/home/lib/login_functions.sh index b8e9f41..41f44b8 100644 --- a/home/lib/login_functions.sh +++ b/home/lib/login_functions.sh @@ -89,6 +89,23 @@ howto() { cat "$(find ~/Archives/Documents/HOWTOs -mindepth 1 -maxdepth 1 | sort | fzf)" } +yt() { + local _yt_uri + local _yt_id + local _yt_title + local _yt_dir + + _yt_uri="$1" + _yt_id=$(youtube-dl --get-id "$_yt_uri") + _yt_title=$(youtube-dl --get-title "$_yt_uri") + _yt_dir="${DIR_YOUTUBE}/individual-videos/${_yt_title}--${_yt_id}" + + mkdir -p "$_yt_dir" + cd "$_yt_dir" || exit 1 + echo "$_yt_uri" > 'uri' + youtube-dl -c --write-description --write-info-json "$_yt_uri" +} + gh_fetch_repos() { curl "https://api.github.com/$1/$2/repos?page=1&per_page=10000" }