summaryrefslogtreecommitdiff
path: root/vid
blob: cabc3159cf39be71db1de78ec06e32e74b2253ee (plain)
1
2
3
4
5
6
#!/bin/sh

dir="$HOME/vid"
video=$(find $dir -type f | cut -d '/' -f '5-' | dmenu -i -c -l 15 -p "Play video:")

[ -f "$dir/$video" ] && mpv --really-quiet "$dir/$video"