Hello, Johannes.
The desktop launcher works fine, you say. The launcher file holds a link target (lenkemal) which points to a "PSU Desginer II.desktop" file.
As explained in my previous post, only using Total Commander as an example, the .desktop file is a pure text file which is understood by Mint. It holds the complete commandline which Mint should launch.
As can be seen in my example, too, for Wine this may include a pretty long and complex looking prefix.
The desktop launcher works fine very likely because the given link target holds all needed details for Mint so that it launches Wine and Wine launches ""PSU Desginer II".
The menu launcher does not seem to have such a link target (lenkemal). I assume that this is the reason why it fails.
Possibly prefixing the right Wine specific details to the commandline might make the menu launcher work as well.
Currently the commandline reads
- Code: Select all
"/home/inge/.wine/drive_c/Program Files (x86)/Duncan Amplification/Power Designer 2/psud2.exe"
Adapting the Wine prefix from my example you might prefix this to the given commandline
- Code: Select all
env WINEPREFIX="/home/inge/.wine" wine
The complete commandline would read (all on one line, no linebreaks)
- Code: Select all
env WINEPREFIX="/home/inge/.wine" wine "/home/inge/.wine/drive_c/Program Files (x86)/Duncan Amplification/Power Designer 2/psud2.exe"
Potentially there is a much easier solution:
Copy the "PSU Desginer II.desktop" to /home/inge/.local/share/applications.
- Code: Select all
cp "/home/inge/.local/share/applications/wine/Programs/Duncans Amp Tools/PSU Desginer II.desktop" /home/inge/.local/share/applications"
I am not sure where in the menu structure the entry will appear. You may have to look around a bit.
Kind regards,
Karl