How can I create a quick launcher in Lubuntu?

How can I set up quick launchers in Lubuntu?

I've installed Lubuntu 14.04. Now I see no way to set quick launchers, especially for programs not listed in the menu (which must be started from a terminal).

4

4 Answers

You can follow this to create a launcher on the Lubuntu desktop.

Run this command in a terminal:

lxshortcut -o ~/Desktop/myLauncher

Choose the path to the application or just run a command:

enter image description here

Select an icon if you want:

enter image description here

2

You can also use PCManFM file manager:
first select file,
then choose in command panel Edit -> Create Link...
then choose destination folderlink creation sample

I downloaded the package known as 'menulibre' through synaptic package manager. It helps to create a launcher in our application menu which can be added to panel if required.

menulibre can be installed using apt

sudo apt-get install menulibre
1

In my case, if I need to add any things to my quick launch (Alt + F2), I added it to my path, usually the simplest way is just create a symlink to the /usr/bin

For example: I have my android studio which can be launch by

./opt/android-studio/bin/studio.sh

I will do the symlink:

sudo ln -s /opt/android-studio/bin/studio.sh /usr/bin/android-studio

Now, when you press Alt + F2, and type android-studio, you should find the program.

it should work the same if you put it into your path variable by modifying your .bash_profile file. But usually source the profile file doesn't get Alt+F2 work immediately in this case for me, I need to logout or restart my computer for it to work.

Note: remember to make your file executable by chmod a+x

My system is Lubuntu 15.10.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like