Open chimak111 opened 2 years ago
In line 42 with /var/lib/flatpak/app); do it maybe useful to have instead /var/lib/flatpak/app 2> /dev/null); do
/var/lib/flatpak/app); do
/var/lib/flatpak/app 2> /dev/null); do
because if one of the locations, /usr/local/share/applications in my case, is missing, fd flashes a message briefly about it being missing.
/usr/local/share/applications
fd
Maybe this is not noticeable on a powerful system but on slower machines it is.
Thanks!
I think you're right. No need to show stderr for any of these. I'll take a look in a bit.
In line 42 with
/var/lib/flatpak/app); do
it maybe useful to have instead
/var/lib/flatpak/app 2> /dev/null); do
because if one of the locations,
/usr/local/share/applications
in my case, is missing,fd
flashes a message briefly about it being missing.Maybe this is not noticeable on a powerful system but on slower machines it is.
Thanks!