Add YTD plugin for Oh-My-Zsh

This commit is contained in:
Anıl Tuğrul Türker 2025-08-28 15:11:48 +03:00
commit 98ba37a969
2 changed files with 53 additions and 0 deletions

View file

@ -0,0 +1,17 @@
#!/bin/zsh
# ytd: YouTube ses indirici Oh My Zsh plugin
ytd() {
if [[ -z "$1" ]]; then
echo "Kullanım: ytd <YouTube linki>"
return 1
fi
# İndirme klasörü
DIR="$HOME"
mkdir -p "$DIR"
# yt-dlp ile mp3 olarak indir
yt-dlp -f bestaudio --extract-audio --audio-format mp3 --no-playlist -o "$DIR/%(title)s.%(ext)s" "$1"
}