mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2026-01-30 09:48:11 +01:00
11 lines
322 B
Bash
11 lines
322 B
Bash
#!/bin/sh
|
|
|
|
tempfile=$(mktemp)
|
|
locate -d ~/.config/.mymlocate.db -b -r '.*\.\(mp4\|mkv\|webm\|mov\|m4v\|wmv\|flv\|avi\)$' > "$tempfile"
|
|
|
|
chosen_name=$(sed 's|.*/||; s/\.[^.]*$//' "$tempfile" | dmenu -i -l 10 -p "Select a video file:")
|
|
chosen_path=$(grep "/$chosen_name\." "$tempfile")
|
|
|
|
mpv "$chosen_path"
|
|
rm -f "$tempfile"
|