Page 1 of 1

Launcher question

Posted: 9. Nov 2011, 21:27
by Oracle911
Its an example:
How can i create launcher for qBtorrent?

Re: Launcher question

Posted: 10. Nov 2011, 05:36
by Akuna
In Xfce, right click anywhere on the wallpaper and choose 'Create a launcher' from the contextual menu that pops on.
Or else adddin to the panel it is almost the same, right click anywhere on the panel, then choose 'Add an element' and then 'Launcher'.

If I may say, this is quite basic stuff ( at least for someone intending to be the next Steve Job ;) ).
Googling might have been a more appropriate (and fast) way to get this info.

Re: Launcher question

Posted: 11. Nov 2011, 16:59
by Oracle911
I know that Akuna. I really did research.
What i don`t what need type (i mean the route to application).

Re: Launcher question

Posted: 11. Nov 2011, 18:11
by mimosa
It's probably /usr/bin/application

One way of making sure is from a terminal,

Code: Select all

$which application
as I just found by searching online for "find application path in Linux"; I used to use the whereis command, but that tells you the path to all sorts of other related stuff too. which is exactly the right tool here.

So for instance

Code: Select all

vanilla[~]$ which firefox                                                                                                                                                                             
/usr/bin/firefox
vanilla[~]$

Re: Launcher question

Posted: 11. Nov 2011, 18:44
by Oracle911
Thank you.

Re: Launcher question

Posted: 11. Nov 2011, 19:07
by mimosa
You're welcome :)

I hope you won't mind my pointing out that a more specific question would have got you the answer more quickly, as in:
I'm trying to create a launcher shortcut in xfce, which I found out how to do by fiddling around with it/searching, but I'm not sure how to work out the application path.
You original question
How can i create launcher for qBtorrent?
looks as if you are asking for the information Akuna gave you.

Re: Launcher question

Posted: 12. Nov 2011, 04:40
by Akuna
Oh, OK, I understand now.
And good tip from Mimosa. :)