Hi
I'm having an issue using vifm as default, with vifm setted as default
On ~/.config/mimeapps.list:
inode/direcory=vifm.desktop
inode/mount/point=vifm.desktop
I have this script for open files & folders:
find ~ | fzf | xargs -r -0 xdg-open
It doesn't work opening folders vifm
If I write it like this
xdg-open $(find ~ | fzf | xargs -r -0)
It works, but the variable -0 of xargs doesn't , so the script is unusable, because it doesn't works with files and folders with spacing in their names.
Any suggestion?
Thanks in advance