30

I want to add Gnome-Do to my startup applications in Lubuntu 10.04 and the only reference I've found on the net is to edit /etc/xdg/lxsession/LXDE/autostart. But surely there must be a way to do this on a user basis?

happy_soil
  • 2,411
  • 2
  • 20
  • 22
Peter Jaric
  • 2,076
  • 5
  • 28
  • 37
  • Just a note of warning that my lubuntu system had "Disable autostarted applications" set to "config-only", which (as the name suggests) disables applications in the .config/autostart. Make sure this is set to "no", if you'd like to launch startup applications. It can be found in the GUI through: Desktop -> Preferences -> Default applications for LXSession -> Autostart -> Disable autostarted applications -> no – woodvi Feb 22 '14 at 17:17

5 Answers5

24

http://wiki.lxde.org/en/Autostart

Add a .desktop file to your ~/.config/autostart directory (create one if not available) with 3 lines saying :

 [Desktop Entry]
 Type=Application
 Exec=wicd-client -n
Hunsu
  • 185
  • 2
  • 8
7

If the program you want to start has a *.desktop file, then simply copy or symlink it into the ~/.config/autostart directory.

Source:

Otherwise, for commands in general,

"For per-user autostart, use the ~/.config/lxsession/Lubuntu/autostart file."

It has the same format as /etc/xdg/lxsession/Lubuntu/autostart

Source:

yuzisee
  • 171
  • 1
  • 2
4

Preferences > Desktop Session Settings

From here you can add or remove startup programs.

Wes
  • 41
  • 1
3

In case you don't like editing *.desktop files manually or the app you need does not have a *.desktop file in /usr/share/applications you could simply open ~/.config/autostart in pcmanfm, right-click on white space and select Create New -> Shortcut and fill in the Command field with whatever you need.

ccpizza
  • 7,456
  • 6
  • 54
  • 56
1

This works for Lubuntu LXQt 20.04:

Preferences -> LXQt settings -> Session Settings -> Autostart

AmerllicA
  • 345
  • 2
  • 7