blob: 118d8cd1ed2385a4d4e1d97be997278983112176 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#!/bin/bash
choice=$(echo '' | dmenu -p "Paste a link to a video:" -sb "#222222") #Add text describing what its doing
if [[ $choice == '' ]]; then
echo "No input."
exit 1
else
mpv $choice
fi
|