no problem, i thought i was going mad! the problem from my side is narrowing down the root cause.
Tim
Code: Select all
sudo su
for file in $(find /var/lib/menu-xdg/applications/menu-xdg -name "*.desktop"); do if [[ -n $(grep -IRiL "Icon" $file) ]] ; then echo "Patching File: $file" ; sudo echo "Icon=application-x-executable">>$file; fi; done