Added 1M and 2M limits for YT downloads

This commit is contained in:
2026-07-26 19:44:07 +01:00
parent 7999de5f45
commit faff9fa9a5
+8 -1
View File
@@ -521,6 +521,12 @@ alias mkdir-random='mkdir $(cat /dev/urandom | tr -dc "a-zA-Z0-9" | fold -w 50 |
## yt-dlp Default Limit ## yt-dlp Default Limit
alias yt-dlp-limit="yt-dlp --limit-rate 5M -f 137+140 $1" alias yt-dlp-limit="yt-dlp --limit-rate 5M -f 137+140 $1"
## yt-dlp 5M Limit
alias yt-dlp-limit-1m="yt-dlp --limit-rate 1M -f 137+140 $1"
## yt-dlp 5M Limit
alias yt-dlp-limit-2m="yt-dlp --limit-rate 2M -f 137+140 $1"
## yt-dlp 5M Limit ## yt-dlp 5M Limit
alias yt-dlp-limit-5m="yt-dlp --limit-rate 5M -f 137+140 $1" alias yt-dlp-limit-5m="yt-dlp --limit-rate 5M -f 137+140 $1"
@@ -529,10 +535,11 @@ alias yt-dlp-limit-10m="yt-dlp --limit-rate 10M -f 137+140 $1"
## yt-dlp 15M Limit ## yt-dlp 15M Limit
alias yt-dlp-limit-15m="yt-dlp --limit-rate 15M -f 137+140 $1" alias yt-dlp-limit-15m="yt-dlp --limit-rate 15M -f 137+140 $1"
#GO #GO
alias go=/usr/local/go/bin/go alias go=/usr/local/go/bin/go
## Display all commands in this Alias file ## Display all commands in this Alias file
alias my-alias="cat ~/.aliases | grep -oP 'alias\s\K[^=]+' | sort -n" alias my-alias="cat ~/.aliases | grep -oP 'alias\s\K[^=]+' | sort -n"