mirror of
https://github.com/quamotion/dotnet-packaging.git
synced 2026-02-14 21:32:52 +00:00
Add installed package to startmenu #68
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @hendrikmennen on GitHub (Sep 3, 2019).
Is it possible to create a shortcut in the startmenu after installing?
Trying with dotnet deb and I want to make it easy to execute the application after installing.
Right now I have to go to the installation directory and execute it manually.
@qmfrederik commented on GitHub (Sep 3, 2019):
You'll probably need to place a file in either
/usr/share/menu(see http://manpages.ubuntu.com/manpages/bionic/man5/menufile.5.html) or/usr/share/applications(see https://developer.gnome.org/integration-guide/stable/desktop-files.html.en).If that's the case, you can use the
LinuxFileconstruct to include this file in thedebcreated withdotnet rpm.A good way to start would be to first try & manually create such a menu entry file, and see if it works for your application. If it does, let's try to integrate that with
dotnet deb.@hendrikmennen commented on GitHub (Sep 9, 2019):
I am now using dpkg-deb on a linux subsystem to create my packages.
Closing this