mirror of https://gitlab.com/dabruh/dotfiles.git
8 lines
275 B
Plaintext
8 lines
275 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
# Verbosity and settings that you pretty much just always are going to want.
|
||
|
alias \
|
||
|
yt="yt-dlp --embed-metadata -i" \
|
||
|
yta="yt -x -f bestaudio/best -o '%(uploader)s - %(title)s [%(id)s].%(ext)s'" \
|
||
|
ytmp3="yta --audio-format mp3 --audio-quality 192K"
|