From 3d11a57c4cea782139c51720f646eacdf90f264c Mon Sep 17 00:00:00 2001 From: Connor Olding Date: Wed, 13 Oct 2021 20:53:10 -0700 Subject: [PATCH] remove docs for `ytg` functions (for now?) --- sh/streamcrap | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sh/streamcrap b/sh/streamcrap index 7c55165..f86e61c 100644 --- a/sh/streamcrap +++ b/sh/streamcrap @@ -116,8 +116,8 @@ yt() { ### @- mpv_watch "$vid" "$@" } -ytg() { ### @- - ### watch a youtube video. like `yt`, but with a preference for different formats. +ytg() { # @- + # watch a youtube video. like `yt`, but with a preference for different formats. argc -ge 1 "$0" "$@" || return local vid="$1"; shift # --ytdl-format=22/95/300/best @@ -131,8 +131,8 @@ ytll() { ### @- youtube-dl -q -f best "$1" -o - | mpv_stream - --no-ytdl } -ytgll() { ### @- - ### watch a stream from youtube in mpv. like `ytll`, but with a preference for different formats. +ytgll() { # @- + # watch a stream from youtube in mpv. like `ytll`, but with a preference for different formats. argc -ge 1 "$0" "$@" || return youtube-dl -q -f 22/95/300/best "$1" -o - | mpv_stream - --no-ytdl }