I am running Ubuntu 12.04 on an IBM ThnkPad T42. I just installed Gnome and Cinnamon but I am still using Unity. The only problem is that in dash when I search for any application they don't appear. I don't see recent applications either. I fixed it by running unity --reset but the next time I turned on my computer it was broken again
6 Answers
Reinstall unity-lens-applications and unity-lens-files logged out and back in and it should work.
- 912
This worked for me:
- Switch to tty1 (Ctrl+Alt+F1) and login as myself.
rm -rf ~/.compiz(in order to recursively delete session logs... there might also be~/.compiz-1and so on, delete them all!)sudo service lightdm restart- login using the standard greeter again.
https://bugs.launchpad.net/ubuntu/+source/unity/+bug/943083/comments/14
The Unity Dash shows applications which have .desktop shortcuts in /usr/share/applications/ or ~/.local/share/applications/. So ensure that the application has a .desktop shortcut in at least one of these two folders.
- 5,909
- 1
- 23
- 21
Enter Ubuntu software center, search for unity > "More Info" and if you scroll down, there are "Optional addons". Check unity lens files and applications then apply.
- 11
This worked for me:
Go to /usr/share/applications/ or ~/.local/share/applications/ and open in gedit the mpv.desktop file (if it is there, if not, probably try to create one).
If there is a line
NoDisplay=true
change it to
NoDisplay=false
- 917
- 7
- 16
This command will restore the configuration of dash:
sudo dpkg-reconfigure -A
It should be working.
- 14,504