5 lines
74 B
Plaintext
5 lines
74 B
Plaintext
|
#!/bin/sh -xe
|
||
|
cd ~/ytdl
|
||
|
PLAY="$(fzf -e)"
|
||
|
[ ! -z "$PLAY" ] && mpv "$PLAY"
|