1

I have mono application .exe (KeePass)

Also I have following script to launch it: (keepass.sh)

#!/bin/sh
mono `dirname $0`/KeePass.exe

Now I want to lock it in my launcher. But when I do it using (right click -> lock to launcher) and click to it nothing happen. What can I do?

Jorge Castro
  • 71,754
RiaD
  • 1,395

1 Answers1

1

This should work just fine(1st answer):

How do I add a custom launcher?

zuberuber
  • 2,010
  • I've tried it now, it create icon, but when I click it, another icon is created in the bar – RiaD Jul 27 '12 at 22:50
  • tried with Exec =/path/to/sh and Exec = mono /path/to/exe – RiaD Jul 27 '12 at 22:50
  • @RiaD, If you are getting the same results as me, the second icon created in the bar after launching the program is just the application actually running as opposed to the launcher you manually added. Once you close the application, you will only see the one launcher icon. I just live with there being two separate icons when it is running. – still_dreaming_1 Nov 12 '18 at 17:04