In this case, the software is Blender. I followed the instructions on Blender.org, and it all works. But, when I click on Blender in the dash, it runs version 2.62, which is what I got with apt-get. If I want the latest version that I downloaded from the website (2.68a), I have to go into the folder that was extracted from the .tar.bz2 file and click on Blender in there. Isn't there a way to connect the icon in the dash with the last one I downloaded, so I don't have to keep going through the file system?
Asked
Active
Viewed 81 times
2 Answers
3
You have to create a new file in ~/.local/share/applications called blender.desktop with the following content inside:
[Desktop Entry]
Name=Blender
GenericName=3D modeller
Comment=3D modeling, animation, rendering and post-production
Exec=/path/to/bleder-version-2.68a
Icon=blender
Terminal=false
Type=Application
Categories=Graphics;3DGraphics;
MimeType=application/x-blender;
Change /path/to/bleder-version-2.68a with the absolute path of Blender, version 2.68a.
Radu Rădeanu
- 174,089
- 51
- 332
- 407
0
Because you are using the .desktop file that was installed in the system. If you want to use another blender, you should either:
- Remove the Blender installed with apt and create the
.desktopfile - Modify the current
.desktopfile - Create another
.desktopfile with different name.
You should look into /usr/share/applications/*.desktop for them. Create a file with root and save it. You can read a extensive guide about desktop entries here