A while ago I adopted this nifty tree script (https://forums.linuxmint.com/viewtopic.php?p=1616323) to do dirhtml as a custom action in XFCE. Nothing fancy
#!/bin/dash
for i in "$@"; do
tree "$i" --si --sort=name -H "$i" -o ~/"$(basename "$i")".html
xdg-open ~/"$(basename "$i")".html
done
exit
I'm planning to use your app to replace tree in it. Any advice on how to go about it, given LinuxDir2HTM features/switches?
Thank you and cheers!