Fix "Add to Favorites" for custom apps in Ubuntu

There is no “Add to Favorites” option in Ubuntu dock for custom apps. You will learn how to create a custom launcher and add to favorites in the dock.

Content

Add standard application to Ubuntu dock

If you open any application from the Ubuntu menu and right-click on it in the dock, you will be able to pin it to the dock by selecting “Add to Favorites”:

Add to Favorites in Ubuntu

The application launcher will stay there after you close the app. That’s is the way to get a quick launcher for any app. However, this approach doesn’t work if you install an application not from the Ubuntu repository.

Add custom application to Ubuntu dock

Let’s say you have installed an application using an executable file and not the repositories. If you launch such an application and try to add it to favorites in the Ubuntu dock, you won’t find such an option in the context menu:

no Add to Favorites in Ubuntu

I don’t know why you cannot add to dock custom applications by default. And the only way to add it is to create a launcher manually.

For that, you need to create a yourapp.desktop file in /usr/share/applications/:

sudo nano /usr/share/applications/yourapp.desktop

Paste the following content:

#!/usr/bin/env xdg-open
[Desktop Entry]
Version=1.0
Type=Application
Terminal=false
Exec=/path/to/yourapp
Name=YourApp
Comment=Description of YourApp
Icon=/path/to/yourapp.png

Replace yourapp with your application and save by pressing Ctrl+O, Enter and Ctrl+X.

Make this file executable:

sudo chmod +x /usr/share/applications/yourapp.desktop

Log out and log in.

Open the Ubuntu Dash menu and you should be able to find your custom application in the menu. You can launch it from the menu.

custom app in Ubuntu menu

Also, if right-click on it, you should be able to select “Add to Favorites” and pin it to the dock panel:

Add to Favorites for custom app in Ubuntu

Now, when you close this application, a quick launcher will stay in the dock panel.

Create terminal launcher for custom application

Additionally, you can also create a quick launcher for this application to run it from the terminal.

Just create a file with the path to your application in /usr/local/bin/:

sudo echo /path/to/yourapp > /usr/local/bin/yourapp

Make it executable:

sudo chmod +x /usr/local/bin/yourapp

Now, if you run yourapp anywhere in the terminal, your custom application will launch.

Let me know in the comments if you know a better way to create a custom launcher in Ubuntu.

Average Linux User
Average Linux User I am the founder of the Average Linux User project, which is a hobby I work on at night. During the day I am a scientist who uses computers to analyze genetic data.

Comments



karinathill

Now a days all kinds of videos and audios are edited with the help of DaVinci Resolve Studio Crack. It helps the new user a lout. This provide the access to three separate tools, including professional editing, video combining, and color correction.

karinathill CrackCut.com


Peter

This is one of those weird things that after all those years, the go-to solution is “Oh, just write a script with all the correct parameters, put it in the right place, and if it doesn’t work, lol that’s your problem.”

It’s only when I try to do anything in Windows, that I realize how good the rest of Ubuntu really is, though.



Dev

Hi Average Linux User, Thank you for sharing this fantastic article on adding custom apps to the dock. I have downloaded this app called ClickUp, but it gets a new update with a unique version number every other week, and the exec path in /usr/share/applications//yourapp.desktop doesn’t work. For example, when I open this app called ClickUp-3.0.4.AppImage gets a new update with a different version number ClickUp-3.0.5.AppImage. Should I include a regex in the exec path? Or is there an alternative solution?

#!/usr/bin/env xdg-open
[Desktop Entry]
Version=1.0
Type=Application
Terminal=false
Exec=/home/john/Downloads/ClickUp-3.0.5.AppImage
Name=ClickUp
Comment=ClickUp App
Icon=/home/john/Downloads/clickup-logo.png

Dev

Hi Average Linux User, Thank you for sharing this fantastic article on adding custom apps to the dock. I have downloaded this app called ClickUp, but it gets a new update with a unique version number every other week, and the exec path in /usr/share/applications//yourapp.desktop doesn’t work. For example, when I open this app called ClickUp-3.0.4.AppImage gets a new update with a different version number ClickUp-3.0.5.AppImage. Should I include a regex in the exec path? Or is there an alternative solution?

#!/usr/bin/env xdg-open [Desktop Entry] Version=1.0 Type=Application Terminal=false Exec=/home/john/Downloads/ClickUp-3.0.5.AppImage Name=ClickUp Comment=ClickUp App Icon=/home/john/Downloads/clickup-logo.png


Jonathan

Thanks for that. It worked really well, but when I first did it I left the app as “Yourapp” (I was trying to add Audacity). I did it again and got to add Audacity, but when I click on the icon it acually opens “Yourapp” - which is Audacity. I would like to remove “Yourapp” so that Audacity and its icon remain alone - are you able to tell me how to reverse my error?







Veronika

Worked for me to add Eclipse to favorites: Launch the application –> Right click on the status bar of it (on top of the opened window) –> chose “Move to workspace down” –> right click on the icon in the launcher bar –> Add to favorites

Hope will help ;)



Lucas

Tried that with Palemoon installed with gdebi from a deb package on Ubuntu 20.04. Worked fine for adding the app to the application menu, however it does not show the option to add to favorites on right clicking (when application opened in the dock). Any ideas? Thanks for the post, very useful



Tony

That did not work for me. I have tried the StartupWMClass didn't work. right click on running pgm was successful at adding to dock, but icon was wrong, and app didn't run, so that didn't work. Come one guys, this should not take hours to get to work. WHY Doesn't this work? it worked on 18, but functionality has been changed in 20. not cool




Nicolas

Thanks for this tutorial. It helps a lot! It worked fine on one of my pcs. But on the other it does this thing where it launches the app in a new icon : https://framapic.org/pznT6Br1niFX/mLkQHfQ97IRN.gif. Any idea what could be causing this?

Average Linux User

Average Linux User

Hi Nicolas, Thank you for the comment. I do not experience that issue. I tested it with the Standard Notes AppImage:

#!/usr/bin/env xdg-open
[Desktop Entry]
Version=1.0
Type=Application
Terminal=false
Exec=/home/alu/Programs/Standard-Notes-3.3.5.AppImage
Name=Standard Notes
Comment=Standard Notes
Icon=/home/alu/Programs/Standard-Notes.png

Do you run any additional GNOME extensions?

Nicolas

Hi, Thanks for your response. I run a couple of extensions : alternatetab, Always zoom workspaces, Noannoyance, Quick close in overview and user themes. But even disabling them doesn't help. I'll keep digging and come back to you if I find the cause of the problem.


Learn how to write in Markdown with this Quick Reference.
Notify me of new comments on this post.
* E-mail is used to display Gravatar.