Mohammed Chami
.NET Developer | Content Creator
Mohammed Chami
.NET Developer | Content Creator

To download YouTube Shorts on Arch linux (an Arch-based Linux distro), you can use tools like yt-dlp, which is a powerful command-line program for downloading videos from YouTube and other sites.
check how to download with other distros:
https://github.com/yt-dlp/yt-dlp
Here’s how you can do it:
yt-dlpYou can install yt-dlp from the Arch repositories (via pacman) or from the AUR.
Option 1: From community repo (preferred):
sudo pacman -S yt-dlp
Option 2: From AUR :
If is available via pacman, but you can install it via an AUR helper like yay:
yay -S yt-dlp
Once installed, use the following command to download a YouTube Short:
yt-dlp <YouTube_Short_URL>
Example:
yt-dlp https://youtube.com/shorts/abc123XYZ
This will download the video in the best available format.
Download audio only:
yt-dlp -x --audio-format mp3 https://youtube.com/shorts/abc123XYZ
yt-dlp updates frequently to keep up with YouTube’s changes. Update it via:
sudo yt-dlp -U
Or, if installed via yay:
yay -Syu yt-dlp
that’s this, goos luck