YouTube Feed With FZF, Thumbnails And Import/Export Subs To NewPipefiles.catbox.moeimage Blaze ( @Blaze@lemmy.zip ) Linux@programming.dev • 6 months ago message-square1fedilinkarrow-up133
arrow-up133imageYouTube Feed With FZF, Thumbnails And Import/Export Subs To NewPipefiles.catbox.moe Blaze ( @Blaze@lemmy.zip ) Linux@programming.dev • 6 months ago message-square1fedilink
minus-square thingsiplay ( @thingsiplay@beehaw.org ) linkfedilink4•6 months agoNice scripts. I want to give an advice you may or may not know. In Bash you can “export” a function, which then you can use the function in fzf preview or bind command like any other program. hello() { echo "hello ${1}" } export -f hello find ./* -maxdepth 0 | fzf --preview='hello {}'
Nice scripts. I want to give an advice you may or may not know. In Bash you can “export” a function, which then you can use the function in fzf preview or bind command like any other program.