I can't find the way to add a custom menu entry to a .desktop launcher.
In Unity I was able to add custom menu entries to launcher like "Open customfile.txt" or "Open somespreadsheet.ods". Is that possible in Ubuntu Dock?
I can't find the way to add a custom menu entry to a .desktop launcher.
In Unity I was able to add custom menu entries to launcher like "Open customfile.txt" or "Open somespreadsheet.ods". Is that possible in Ubuntu Dock?
Follow the steps below.
Copy
.desktop
file associated to your preferred application, sayapp-name.desktop
from/usr/share/applications/
to~/.local/share/applications/
. You can do this by running the following command in TerminalOpen the
.desktop
file using a text-editor, for example by runningLook for a line beginning with
Actions=
. If there is one, appendMy-Custom-Action;
to it. Otherwise, add the following lineWrite the following lines at end of the file:
For example, if you want to open Text editor, put
gedit
in place ofcommand-you-want-ro-run
.Save the file.
Click on "Activities" and search for the application.
Right-click on the application icon and select "Add to Favourites". It should be added to the Ubuntu dock.
Now if you right-click on the newly added application icon in the dock, you should see a "Name of the Option" entry in the context menu which should work as expected.
Similarly, you can other options by adding new
Desktop Action
s and adding the name of the action to theActions=
line. For more info see this.