What is Nostr?
atyh /
npub1wf6…dmed
2023-04-19 01:26:56

atyh on Nostr: Its amazing to me how useful this little script is, and all the things you can do ...

Its amazing to me how useful this little script is, and all the things you can do with it.
This version is a music file searcher and opener. I made another one to play an old radio show, and shutdown the machine after its finished...

#!/bin/sh
#
#fzf music selector
#
FILES=${1:-"/home/atyh/music"}
PLAYER='mpv --no-video'
CHOICE=$(ls "${FILES}" | fzf -i --border=sharp --border-label="╢ MUSIC ╟")
#
if [ $CHOICE ]; then
$PLAYER ${FILES}/${CHOICE}
fi
Author Public Key
npub1wf69f2cy8wvrldtkce20e7c249jek2vw3l0828vlyddevjnet7rqtgdmed