Skip to content

Instantly share code, notes, and snippets.

View codedloki's full-sized avatar
🎯
Focusing

Prashik Jadhav codedloki

🎯
Focusing
View GitHub Profile
@codedloki
codedloki / mpyt
Created June 30, 2026 07:30
Lightweight YouTube MPV launcher using Rofi
#!/bin/zsh
URL=$(rofi -dmenu -p "󰗃 Video URL" -lines 0 -width 40)
if [ -z "$URL" ];then
exit 0
fi
mpv --ytdl-format="bestvideo[height<=1080][vcodec^=avc1]+bestaudio/best" "$URL"