PDA

View Full Version : [SOLVED] Autostart programs at OS start up



Tbuch
October 14th, 2017, 01:03 PM
I'm just starting with the usual that I'm used to work in Windows.
Here, If you want to start an application when the OS starts, you just have to put the program in the "start folder"
What do you do in Ubuntu (more precisely Lubuntu)?

I would like the OS to start up with Thunderbird

Rex Bouwense
October 14th, 2017, 02:43 PM
There is a GUI for that. From the main menu chose Preferences->Default applications for LXsession. Then select Autostart from the tabs on the left. Add Thunderbird and close.
Alternatively from the command line enter:

$ mkdir -p ~/.config/lxsession/Lubuntu/
$ touch ~/.config/lxsession/Lubuntu/autostart
$ leafpad autostart

Tbuch
October 14th, 2017, 02:58 PM
Thanks