Seems interesting. Could you explain the usage a little more clearly?
this post was submitted on 08 Jun 2024
40 points (97.6% liked)
Linux
5386 readers
263 users here now
A community for everything relating to the linux operating system
Also check out [email protected]
Original icon base courtesy of [email protected] and The GIMP
founded 1 year ago
MODERATORS
I am only reposting this unfortunately, but you can probably open an issue on the Github to ask the owner to detail a bit more the scripts: https://github.com/warrior0x7/xlotus
Ah thanks, I assumed you were the creator
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.
hello() {
echo "hello ${1}"
}
export -f hello
find ./* -maxdepth 0 | fzf --preview='hello {}'