Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

I'm able to locate stuff with the dash home then drag it down to the launcher bar on the left of the desktop, but what if the application installed via Wine isn't found via the dash search? I've right clicked on the application in the .wine directory and found no options to create a launcher either.

share|improve this question
Why strip away Ubuntu version in editing? Does the suggested methods work on all versions of Ubuntu then? – Sn3akyP3t3 Jun 8 '12 at 2:46

4 Answers

up vote 11 down vote accepted

You can create a Launcher item in /usr/share/applications. For Wine applications, say foobar.exe, you can create a foobar.desktop file like:

[Desktop Entry]
Name=FooBar
Comment=Foo & Bar
Exec=sh -c "cd /home/USER/.wine/drive_c/Program\ Files/FOOBAR_FOLDER; wine foobar.exe"
Icon=wine
Terminal=false
Type=Application
Categories=Wine;
StartupNotify=true

replacing USER and FOOBAR_FOLDER with appropriate values.

So you'll be able to locate your application in the Launcher by typing "FooBar".

share|improve this answer

Didn't work out of the box for me, but with a small detail I got it working. Simply give the full path for sh like:

Exec=/bin/sh -c "cd /home/USER/.wine/drive_c/Program\ Files/FOOBAR_FOLDER; wine foobar.exe"
share|improve this answer

To get a wine application into the unity bar, the following worked for me:

  • Start alacarte.
  • Go to wine - programs - ... (where your wine program is located).
  • Move the program icon to another folder (outside of wine; e.g., office).
  • Close Alacarte.

Now I could find the program in the unity dash and just move it to the unity bar.

share|improve this answer

Unity Dash works like the old Gnome2 menu did with adding stuff through the "Edit Main Menu" feature but for some reason Canonical decided to make that difficult to know you can even do that.

All you do is...

  1. get the command to run the wine app (basically the same thing in this case).
  2. Press "Super" (windows key) to launch the Dash.
  3. Enter "Main Menu" in the search field and open the old Edit Main Menu app.
  4. If you are familiar with doing this in Ubuntu 10.10 or older via Gnome2 then it is the same process.
  5. If you aren't then, Select the Category (aka Unity Dash Filter) you want the item in.
  6. Choose an Icon, if you want to.
  7. Name the Dash/Launcher Item
  8. Add the Command to launch said app (what we got earlier)

Close the Main Menu app and you're done.

This is a bit more involved but this solution does not require any file editing.

Important Note - not all versions of Ubuntu come with the Main Menu app installed by default so if it is not then just go to the Ubuntu Software Center and search for "alacarte" install that and the tip above will work with no problem.

share|improve this answer
Entering Main Menu in the Dash showed no results. – max Aug 31 '12 at 11:40
I should have probably mentioned you need the Main Menu app installed if it isn't there by default...some versions of Ubuntu it is and some it isn't. "sudo apt-get install alacarte" or just install "alacarte" from the Ubuntu Software Center and that keyword will work. – Michael Tunnell Apr 4 at 21:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.