How do I start applications automatically on login?

Clash Royale CLAN TAG#URR8PPP up vote
308
down vote
favorite
How can I make an application automatically start when I have logged in?
autostart
add a comment |Â
up vote
308
down vote
favorite
How can I make an application automatically start when I have logged in?
autostart
add a comment |Â
up vote
308
down vote
favorite
up vote
308
down vote
favorite
How can I make an application automatically start when I have logged in?
autostart
How can I make an application automatically start when I have logged in?
autostart
edited Feb 1 '13 at 10:53
David Edwards
3,95732442
3,95732442
asked Jun 12 '11 at 7:42
Lincity
17k28109147
17k28109147
add a comment |Â
add a comment |Â
14 Answers
14
active
oldest
votes
up vote
371
down vote
accepted
14.04 and later
Open the Dash and search for "Startup Applications"

Now click on Add and give in the command to run the application. This can be found in Main Menu if installed (see below) or as shown in this question.

Using Main Menu (alacarte
)
Firstly open the program 'Main Menu' (type
Menuin the Dash)
Now select the program which you want to add to startup and click on properties .

Now note the command for that program .

Non GUI approach
Advanced users may want to put a .desktop file in ~/.config/autostart to run applications after a user login. This may have following content:
[Desktop Entry]
Type=Application
Name=<Name of application as displayed>
Exec=<command to execute>
Icon=<full path to icon>
Comment=<optinal comments>
X-GNOME-Autostart-enabled=true
16
useful the "Non GUI approach" part, I was searching that folder!
â Pisu
Jan 7 '13 at 17:50
8
The Start-up Applications Preferences dialogue can be brought up from ALT+F2gnome-session-propertiesif you can't find it in menus (e.g. in Gnome Shell)
â mtdevans
Jan 28 '13 at 22:59
1
Is there any way to run application before a user login?
â SuB
Oct 4 '14 at 15:07
1
@abhishah901: thanks for the notice, updated answer.
â Takkat
Dec 24 '15 at 9:22
3
Note that if you take the non-GUI approach, the file must end with .desktop or it will be ignored.
â leo-the-manic
Sep 30 '16 at 12:38
 |Â
show 7 more comments
up vote
25
down vote
For 11.04 and newer see here: How do I start applications automatically on login?
For older versions: If the program you wish to run on startup is in the Applications menu, you can drag-and-drop it into the Startup Applications window to add it to the list.

add a comment |Â
up vote
20
down vote
Launch Startup applications from Dash

Click on Startup Applications

And then click on add

Type the name of the program, browse to the command, and then click add.
Addition: Here is a sample that I use to autostart Guake - the Gnome version of Yakuake:
Put this in the 'command' box.
sh -c "sleep 120s; guake"
This starts guake automatically, but waits 2 mins before doing so. You can change the 120 to whatever you wish.
Edit:
For 14.04 and 16.04:
Type Startup in Dash, and run Startup Application form there

And then just follow the rest of the steps.
(please note that, if you are using ubuntu in another language, "startup" might not find the correct program. Try another search that is in your language)
In Ubuntu 14.04, I don't see those options in the system menu in the upper right.
â user29020
Sep 25 '14 at 7:39
2
In 14.04 type Startup in dash, and you can run it from there. Look at the addition in the answer. Thanks
â Mitchâ¦
Sep 25 '14 at 13:02
add a comment |Â
up vote
19
down vote
Both Unity and Xfce4 have GUI programs that allow you to control startup applications.
For Unity:


For Xfce4 Startup tool is available in Settings > Session and Startup

Image courtesy of Xubuntu Geek xubuntugeek
If the GUI is not what you want, and you want is more advance control, then you can put .desktop files in the ~/.config/autostart/ directory for Xfce4, and a .desktop file in ~/.config/autostart for Unity to run applications after a user login.
Check this question to get more help on creating .desktop files:
- How can I edit/create new launcher items in Unity by hand?
Also note if you want a startup application to start only in XFCE, but not in Unity, you have to put the line OnlyShowIn=XFCE in the .desktop file. It is OnlyShowIn=Unity for a Unity only application.
From your answer what I get is that for both you put.desktopfile in~/.config/autostart/
â Eduard Florinescu
Aug 30 '12 at 7:37
Please if you know by heart what would be that GUI program, for Unity it isStartup Applications(easy to search), for xfce ?
â Eduard Florinescu
Aug 30 '12 at 7:38
add a comment |Â
up vote
8
down vote
You might want to start it from a CLI via:
$ gnome-session-properties
(just in case you're not running GNOME ;))
1
I had no other way of finding the $#@! window. None of the menu items above exist on my machine, but this command brought it right up.
â Reb.Cabin
Jan 30 '17 at 3:28
add a comment |Â
up vote
6
down vote
You can use GNOME Startup Application. 
Click the Add button and then add the full command to open the application you want. If you don't know the path of the command you can do
which name_of_commmand
add a comment |Â
up vote
4
down vote
Also to put a BATCH FILE into start up applications to run after user login....
type at the command line in start up applications in the field Command:
gnome-terminal -e "/batch-path/batch-name.sh"
gnome-terminal: open the terminal after user login with current user privileges-e: set the terminal to execute the batch file/batch-path/batch-name.sh: is the batch full path and full name
Remember than the file batch permissions to set the flag Allow executing file as a program to ON.
add a comment |Â
up vote
4
down vote
Take a look at $XDG_CONFIG_DIRS/autostart directory:
$ echo $XDG_CONFIG_DIRS/autostart
/etc/xdg/xdg-kde-plasma:/usr/share/upstart/xdg:/etc/xdg/autostart
which says there are 3 directories in this example. I wanted to prune the nautilus entry
sudo rm /etc/xdg/autostart/nautilus-autostart.desktop
otherwise if you can add it, create a Desktop entry file: sudo touch /etc/xdg/autostart/my-shell-autostart.desktop add these contents:
[Desktop Entry]
Name=foo
Terminal=false
Exec=/path/shell.sh
Type=Application
Icon=/path/icon.png
Categories=Utility;
add a comment |Â
up vote
4
down vote
Ubuntu 13.10 with UNITY Instructions
To do this with a command that requires sudo is a bit tricky.
In my case, I wanted to disable the PSMOUSE driver using the command sudo rmmod psmouse to prevent a mouse click problem that randomly manifests itself. See Dealing with Mouse and Touchpad Freezes in Linux for more info on this problem. I got tired of entering it on every boot.
On my install, the ~/.config folder did not have an autostart sub-folder, so I created one. This enabled my Startup Applications Preferences settings to be saved.
In order to toggle visibility of hidden startup applications, you can use the following commands.
To show them :
sudo sed -i 's/NoDisplay=true/NoDisplay=false/g' /etc/xdg/autostart/*.desktop
To hide them :
sudo sed -i 's/NoDisplay=false/NoDisplay=true/g' /etc/xdg/autostart/*.desktop
Configure your command as per above posts in the Startup Applications Perferences window.
Name: Fix Mouse
Command: sudo rmmod psmouse
Comment: Fix Mouse
Then you have to edit the /etc/sudoers file using sudo visudo.
Add a line that contains the following info:
username ALL=(ALL) NOPASSWD: /sbin/rmmod
You must enter this line below the line which starts with %admin. I added my line to the end of the file.
It is IMPORTANT to use sudo visudo to edit this file as making a mistake will prevent you from being able to do any sudo commands at all. If that happens, boot in recovery mode and undo your edits, then try using sudo visudo.
Note:
Initially I tried using a bash script to run my the command indirectly, but this didn't work. I had to put sudo rmmod psmouse directly in the Edit Startup Program window.
add a comment |Â
up vote
3
down vote
For Ubuntu 12.04,
Launch Startup Application from the top right menu

Without clicking on Add, open Dash and type the application you want running at startup e.g. Skype

Drag the application to the Startup application window. If Dash windows is too big that you can't drag your app outside, use the restore window button (shown in the previous image) at the top left corner. Final list looks like this:

Well Step 1 doesn't work for Ubuntu 16.10. But the possibility of drag and drop the app into the autostart window works and is great.
â eDeviser
Nov 4 '16 at 8:17
add a comment |Â
up vote
2
down vote
You can use the feature to Remember Currently Running Applications in the System/Preferences/Startup Applications preferences window. Which (when enabled) will "remember" all the programs that you are using and will re-open them after a reboot or when starting the system for the first time in a day.
This is great when you don't have enough time to make notes of what were you doing the last time and you wish an application to open if it was running the last time.
If you wish to remove an application from this feature simply close it and go to this function and press the "Remember Currently Running Application" in order to refresh the list of the programs that will be opened the next time.

The only thing I do not like about this one is that your/my wireless is slower to come up than my browser is in loading when it was active. Every tab needs to be reloaded after wireless picks up.
â Rinzwind
May 8 '11 at 17:17
Good point. That's why I don't save that preference with the browser open :) Docky is owning the control for my browser with an icon on it. But yours is a good point! Thank you.
â Geppettvs D'Constanzo
May 9 '11 at 20:50
add a comment |Â
up vote
1
down vote
For a simple, portable way to do this, you can use Cron. Run crontab -e to edit your user's crontab; add @reboot command to run command on each boot.
add a comment |Â
up vote
1
down vote
Type "startup applications" in your Unity Dash and it will list you that application which you can click to open. After opening it, you can add your application there.
add a comment |Â
up vote
0
down vote
Alt+F2, then gnome-help ghelp:user-guide?gosstartsession-2.
Click Run, wait a sec, and then follow the directions.
cool I know the part to add but not the commands... so do I google them? or should I hit alt+f2 then put the name of the program... if it finds it, I'll say run in terminal... to display the command?
â user11383
Feb 24 '11 at 4:43
@Bob, which application do you want to run on start up?
â Oxwivi
Feb 24 '11 at 5:35
add a comment |Â
protected by heemayl Apr 11 '16 at 14:07
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?
14 Answers
14
active
oldest
votes
14 Answers
14
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
371
down vote
accepted
14.04 and later
Open the Dash and search for "Startup Applications"

Now click on Add and give in the command to run the application. This can be found in Main Menu if installed (see below) or as shown in this question.

Using Main Menu (alacarte
)
Firstly open the program 'Main Menu' (type
Menuin the Dash)
Now select the program which you want to add to startup and click on properties .

Now note the command for that program .

Non GUI approach
Advanced users may want to put a .desktop file in ~/.config/autostart to run applications after a user login. This may have following content:
[Desktop Entry]
Type=Application
Name=<Name of application as displayed>
Exec=<command to execute>
Icon=<full path to icon>
Comment=<optinal comments>
X-GNOME-Autostart-enabled=true
16
useful the "Non GUI approach" part, I was searching that folder!
â Pisu
Jan 7 '13 at 17:50
8
The Start-up Applications Preferences dialogue can be brought up from ALT+F2gnome-session-propertiesif you can't find it in menus (e.g. in Gnome Shell)
â mtdevans
Jan 28 '13 at 22:59
1
Is there any way to run application before a user login?
â SuB
Oct 4 '14 at 15:07
1
@abhishah901: thanks for the notice, updated answer.
â Takkat
Dec 24 '15 at 9:22
3
Note that if you take the non-GUI approach, the file must end with .desktop or it will be ignored.
â leo-the-manic
Sep 30 '16 at 12:38
 |Â
show 7 more comments
up vote
371
down vote
accepted
14.04 and later
Open the Dash and search for "Startup Applications"

Now click on Add and give in the command to run the application. This can be found in Main Menu if installed (see below) or as shown in this question.

Using Main Menu (alacarte
)
Firstly open the program 'Main Menu' (type
Menuin the Dash)
Now select the program which you want to add to startup and click on properties .

Now note the command for that program .

Non GUI approach
Advanced users may want to put a .desktop file in ~/.config/autostart to run applications after a user login. This may have following content:
[Desktop Entry]
Type=Application
Name=<Name of application as displayed>
Exec=<command to execute>
Icon=<full path to icon>
Comment=<optinal comments>
X-GNOME-Autostart-enabled=true
16
useful the "Non GUI approach" part, I was searching that folder!
â Pisu
Jan 7 '13 at 17:50
8
The Start-up Applications Preferences dialogue can be brought up from ALT+F2gnome-session-propertiesif you can't find it in menus (e.g. in Gnome Shell)
â mtdevans
Jan 28 '13 at 22:59
1
Is there any way to run application before a user login?
â SuB
Oct 4 '14 at 15:07
1
@abhishah901: thanks for the notice, updated answer.
â Takkat
Dec 24 '15 at 9:22
3
Note that if you take the non-GUI approach, the file must end with .desktop or it will be ignored.
â leo-the-manic
Sep 30 '16 at 12:38
 |Â
show 7 more comments
up vote
371
down vote
accepted
up vote
371
down vote
accepted
14.04 and later
Open the Dash and search for "Startup Applications"

Now click on Add and give in the command to run the application. This can be found in Main Menu if installed (see below) or as shown in this question.

Using Main Menu (alacarte
)
Firstly open the program 'Main Menu' (type
Menuin the Dash)
Now select the program which you want to add to startup and click on properties .

Now note the command for that program .

Non GUI approach
Advanced users may want to put a .desktop file in ~/.config/autostart to run applications after a user login. This may have following content:
[Desktop Entry]
Type=Application
Name=<Name of application as displayed>
Exec=<command to execute>
Icon=<full path to icon>
Comment=<optinal comments>
X-GNOME-Autostart-enabled=true
14.04 and later
Open the Dash and search for "Startup Applications"

Now click on Add and give in the command to run the application. This can be found in Main Menu if installed (see below) or as shown in this question.

Using Main Menu (alacarte
)
Firstly open the program 'Main Menu' (type
Menuin the Dash)
Now select the program which you want to add to startup and click on properties .

Now note the command for that program .

Non GUI approach
Advanced users may want to put a .desktop file in ~/.config/autostart to run applications after a user login. This may have following content:
[Desktop Entry]
Type=Application
Name=<Name of application as displayed>
Exec=<command to execute>
Icon=<full path to icon>
Comment=<optinal comments>
X-GNOME-Autostart-enabled=true
edited Apr 13 '17 at 12:24
Communityâ¦
1
1
answered Jun 12 '11 at 8:11
Takkat
102k35244367
102k35244367
16
useful the "Non GUI approach" part, I was searching that folder!
â Pisu
Jan 7 '13 at 17:50
8
The Start-up Applications Preferences dialogue can be brought up from ALT+F2gnome-session-propertiesif you can't find it in menus (e.g. in Gnome Shell)
â mtdevans
Jan 28 '13 at 22:59
1
Is there any way to run application before a user login?
â SuB
Oct 4 '14 at 15:07
1
@abhishah901: thanks for the notice, updated answer.
â Takkat
Dec 24 '15 at 9:22
3
Note that if you take the non-GUI approach, the file must end with .desktop or it will be ignored.
â leo-the-manic
Sep 30 '16 at 12:38
 |Â
show 7 more comments
16
useful the "Non GUI approach" part, I was searching that folder!
â Pisu
Jan 7 '13 at 17:50
8
The Start-up Applications Preferences dialogue can be brought up from ALT+F2gnome-session-propertiesif you can't find it in menus (e.g. in Gnome Shell)
â mtdevans
Jan 28 '13 at 22:59
1
Is there any way to run application before a user login?
â SuB
Oct 4 '14 at 15:07
1
@abhishah901: thanks for the notice, updated answer.
â Takkat
Dec 24 '15 at 9:22
3
Note that if you take the non-GUI approach, the file must end with .desktop or it will be ignored.
â leo-the-manic
Sep 30 '16 at 12:38
16
16
useful the "Non GUI approach" part, I was searching that folder!
â Pisu
Jan 7 '13 at 17:50
useful the "Non GUI approach" part, I was searching that folder!
â Pisu
Jan 7 '13 at 17:50
8
8
The Start-up Applications Preferences dialogue can be brought up from ALT+F2
gnome-session-properties if you can't find it in menus (e.g. in Gnome Shell)â mtdevans
Jan 28 '13 at 22:59
The Start-up Applications Preferences dialogue can be brought up from ALT+F2
gnome-session-properties if you can't find it in menus (e.g. in Gnome Shell)â mtdevans
Jan 28 '13 at 22:59
1
1
Is there any way to run application before a user login?
â SuB
Oct 4 '14 at 15:07
Is there any way to run application before a user login?
â SuB
Oct 4 '14 at 15:07
1
1
@abhishah901: thanks for the notice, updated answer.
â Takkat
Dec 24 '15 at 9:22
@abhishah901: thanks for the notice, updated answer.
â Takkat
Dec 24 '15 at 9:22
3
3
Note that if you take the non-GUI approach, the file must end with .desktop or it will be ignored.
â leo-the-manic
Sep 30 '16 at 12:38
Note that if you take the non-GUI approach, the file must end with .desktop or it will be ignored.
â leo-the-manic
Sep 30 '16 at 12:38
 |Â
show 7 more comments
up vote
25
down vote
For 11.04 and newer see here: How do I start applications automatically on login?
For older versions: If the program you wish to run on startup is in the Applications menu, you can drag-and-drop it into the Startup Applications window to add it to the list.

add a comment |Â
up vote
25
down vote
For 11.04 and newer see here: How do I start applications automatically on login?
For older versions: If the program you wish to run on startup is in the Applications menu, you can drag-and-drop it into the Startup Applications window to add it to the list.

add a comment |Â
up vote
25
down vote
up vote
25
down vote
For 11.04 and newer see here: How do I start applications automatically on login?
For older versions: If the program you wish to run on startup is in the Applications menu, you can drag-and-drop it into the Startup Applications window to add it to the list.

For 11.04 and newer see here: How do I start applications automatically on login?
For older versions: If the program you wish to run on startup is in the Applications menu, you can drag-and-drop it into the Startup Applications window to add it to the list.

edited Apr 13 '17 at 12:25
Communityâ¦
1
1
answered Feb 24 '11 at 5:27
Isaiah
41.7k19117138
41.7k19117138
add a comment |Â
add a comment |Â
up vote
20
down vote
Launch Startup applications from Dash

Click on Startup Applications

And then click on add

Type the name of the program, browse to the command, and then click add.
Addition: Here is a sample that I use to autostart Guake - the Gnome version of Yakuake:
Put this in the 'command' box.
sh -c "sleep 120s; guake"
This starts guake automatically, but waits 2 mins before doing so. You can change the 120 to whatever you wish.
Edit:
For 14.04 and 16.04:
Type Startup in Dash, and run Startup Application form there

And then just follow the rest of the steps.
(please note that, if you are using ubuntu in another language, "startup" might not find the correct program. Try another search that is in your language)
In Ubuntu 14.04, I don't see those options in the system menu in the upper right.
â user29020
Sep 25 '14 at 7:39
2
In 14.04 type Startup in dash, and you can run it from there. Look at the addition in the answer. Thanks
â Mitchâ¦
Sep 25 '14 at 13:02
add a comment |Â
up vote
20
down vote
Launch Startup applications from Dash

Click on Startup Applications

And then click on add

Type the name of the program, browse to the command, and then click add.
Addition: Here is a sample that I use to autostart Guake - the Gnome version of Yakuake:
Put this in the 'command' box.
sh -c "sleep 120s; guake"
This starts guake automatically, but waits 2 mins before doing so. You can change the 120 to whatever you wish.
Edit:
For 14.04 and 16.04:
Type Startup in Dash, and run Startup Application form there

And then just follow the rest of the steps.
(please note that, if you are using ubuntu in another language, "startup" might not find the correct program. Try another search that is in your language)
In Ubuntu 14.04, I don't see those options in the system menu in the upper right.
â user29020
Sep 25 '14 at 7:39
2
In 14.04 type Startup in dash, and you can run it from there. Look at the addition in the answer. Thanks
â Mitchâ¦
Sep 25 '14 at 13:02
add a comment |Â
up vote
20
down vote
up vote
20
down vote
Launch Startup applications from Dash

Click on Startup Applications

And then click on add

Type the name of the program, browse to the command, and then click add.
Addition: Here is a sample that I use to autostart Guake - the Gnome version of Yakuake:
Put this in the 'command' box.
sh -c "sleep 120s; guake"
This starts guake automatically, but waits 2 mins before doing so. You can change the 120 to whatever you wish.
Edit:
For 14.04 and 16.04:
Type Startup in Dash, and run Startup Application form there

And then just follow the rest of the steps.
(please note that, if you are using ubuntu in another language, "startup" might not find the correct program. Try another search that is in your language)
Launch Startup applications from Dash

Click on Startup Applications

And then click on add

Type the name of the program, browse to the command, and then click add.
Addition: Here is a sample that I use to autostart Guake - the Gnome version of Yakuake:
Put this in the 'command' box.
sh -c "sleep 120s; guake"
This starts guake automatically, but waits 2 mins before doing so. You can change the 120 to whatever you wish.
Edit:
For 14.04 and 16.04:
Type Startup in Dash, and run Startup Application form there

And then just follow the rest of the steps.
(please note that, if you are using ubuntu in another language, "startup" might not find the correct program. Try another search that is in your language)
edited Oct 2 '17 at 21:13
Elder Geek
25.2k948120
25.2k948120
answered Sep 12 '12 at 7:27
Mitchâ¦
81.1k14165226
81.1k14165226
In Ubuntu 14.04, I don't see those options in the system menu in the upper right.
â user29020
Sep 25 '14 at 7:39
2
In 14.04 type Startup in dash, and you can run it from there. Look at the addition in the answer. Thanks
â Mitchâ¦
Sep 25 '14 at 13:02
add a comment |Â
In Ubuntu 14.04, I don't see those options in the system menu in the upper right.
â user29020
Sep 25 '14 at 7:39
2
In 14.04 type Startup in dash, and you can run it from there. Look at the addition in the answer. Thanks
â Mitchâ¦
Sep 25 '14 at 13:02
In Ubuntu 14.04, I don't see those options in the system menu in the upper right.
â user29020
Sep 25 '14 at 7:39
In Ubuntu 14.04, I don't see those options in the system menu in the upper right.
â user29020
Sep 25 '14 at 7:39
2
2
In 14.04 type Startup in dash, and you can run it from there. Look at the addition in the answer. Thanks
â Mitchâ¦
Sep 25 '14 at 13:02
In 14.04 type Startup in dash, and you can run it from there. Look at the addition in the answer. Thanks
â Mitchâ¦
Sep 25 '14 at 13:02
add a comment |Â
up vote
19
down vote
Both Unity and Xfce4 have GUI programs that allow you to control startup applications.
For Unity:


For Xfce4 Startup tool is available in Settings > Session and Startup

Image courtesy of Xubuntu Geek xubuntugeek
If the GUI is not what you want, and you want is more advance control, then you can put .desktop files in the ~/.config/autostart/ directory for Xfce4, and a .desktop file in ~/.config/autostart for Unity to run applications after a user login.
Check this question to get more help on creating .desktop files:
- How can I edit/create new launcher items in Unity by hand?
Also note if you want a startup application to start only in XFCE, but not in Unity, you have to put the line OnlyShowIn=XFCE in the .desktop file. It is OnlyShowIn=Unity for a Unity only application.
From your answer what I get is that for both you put.desktopfile in~/.config/autostart/
â Eduard Florinescu
Aug 30 '12 at 7:37
Please if you know by heart what would be that GUI program, for Unity it isStartup Applications(easy to search), for xfce ?
â Eduard Florinescu
Aug 30 '12 at 7:38
add a comment |Â
up vote
19
down vote
Both Unity and Xfce4 have GUI programs that allow you to control startup applications.
For Unity:


For Xfce4 Startup tool is available in Settings > Session and Startup

Image courtesy of Xubuntu Geek xubuntugeek
If the GUI is not what you want, and you want is more advance control, then you can put .desktop files in the ~/.config/autostart/ directory for Xfce4, and a .desktop file in ~/.config/autostart for Unity to run applications after a user login.
Check this question to get more help on creating .desktop files:
- How can I edit/create new launcher items in Unity by hand?
Also note if you want a startup application to start only in XFCE, but not in Unity, you have to put the line OnlyShowIn=XFCE in the .desktop file. It is OnlyShowIn=Unity for a Unity only application.
From your answer what I get is that for both you put.desktopfile in~/.config/autostart/
â Eduard Florinescu
Aug 30 '12 at 7:37
Please if you know by heart what would be that GUI program, for Unity it isStartup Applications(easy to search), for xfce ?
â Eduard Florinescu
Aug 30 '12 at 7:38
add a comment |Â
up vote
19
down vote
up vote
19
down vote
Both Unity and Xfce4 have GUI programs that allow you to control startup applications.
For Unity:


For Xfce4 Startup tool is available in Settings > Session and Startup

Image courtesy of Xubuntu Geek xubuntugeek
If the GUI is not what you want, and you want is more advance control, then you can put .desktop files in the ~/.config/autostart/ directory for Xfce4, and a .desktop file in ~/.config/autostart for Unity to run applications after a user login.
Check this question to get more help on creating .desktop files:
- How can I edit/create new launcher items in Unity by hand?
Also note if you want a startup application to start only in XFCE, but not in Unity, you have to put the line OnlyShowIn=XFCE in the .desktop file. It is OnlyShowIn=Unity for a Unity only application.
Both Unity and Xfce4 have GUI programs that allow you to control startup applications.
For Unity:


For Xfce4 Startup tool is available in Settings > Session and Startup

Image courtesy of Xubuntu Geek xubuntugeek
If the GUI is not what you want, and you want is more advance control, then you can put .desktop files in the ~/.config/autostart/ directory for Xfce4, and a .desktop file in ~/.config/autostart for Unity to run applications after a user login.
Check this question to get more help on creating .desktop files:
- How can I edit/create new launcher items in Unity by hand?
Also note if you want a startup application to start only in XFCE, but not in Unity, you have to put the line OnlyShowIn=XFCE in the .desktop file. It is OnlyShowIn=Unity for a Unity only application.
edited Apr 13 '17 at 12:24
Communityâ¦
1
1
answered Aug 30 '12 at 7:19
Mitchâ¦
81.1k14165226
81.1k14165226
From your answer what I get is that for both you put.desktopfile in~/.config/autostart/
â Eduard Florinescu
Aug 30 '12 at 7:37
Please if you know by heart what would be that GUI program, for Unity it isStartup Applications(easy to search), for xfce ?
â Eduard Florinescu
Aug 30 '12 at 7:38
add a comment |Â
From your answer what I get is that for both you put.desktopfile in~/.config/autostart/
â Eduard Florinescu
Aug 30 '12 at 7:37
Please if you know by heart what would be that GUI program, for Unity it isStartup Applications(easy to search), for xfce ?
â Eduard Florinescu
Aug 30 '12 at 7:38
From your answer what I get is that for both you put
.desktop file in ~/.config/autostart/â Eduard Florinescu
Aug 30 '12 at 7:37
From your answer what I get is that for both you put
.desktop file in ~/.config/autostart/â Eduard Florinescu
Aug 30 '12 at 7:37
Please if you know by heart what would be that GUI program, for Unity it is
Startup Applications(easy to search), for xfce ?â Eduard Florinescu
Aug 30 '12 at 7:38
Please if you know by heart what would be that GUI program, for Unity it is
Startup Applications(easy to search), for xfce ?â Eduard Florinescu
Aug 30 '12 at 7:38
add a comment |Â
up vote
8
down vote
You might want to start it from a CLI via:
$ gnome-session-properties
(just in case you're not running GNOME ;))
1
I had no other way of finding the $#@! window. None of the menu items above exist on my machine, but this command brought it right up.
â Reb.Cabin
Jan 30 '17 at 3:28
add a comment |Â
up vote
8
down vote
You might want to start it from a CLI via:
$ gnome-session-properties
(just in case you're not running GNOME ;))
1
I had no other way of finding the $#@! window. None of the menu items above exist on my machine, but this command brought it right up.
â Reb.Cabin
Jan 30 '17 at 3:28
add a comment |Â
up vote
8
down vote
up vote
8
down vote
You might want to start it from a CLI via:
$ gnome-session-properties
(just in case you're not running GNOME ;))
You might want to start it from a CLI via:
$ gnome-session-properties
(just in case you're not running GNOME ;))
answered Aug 21 '14 at 7:18
Wernight
87578
87578
1
I had no other way of finding the $#@! window. None of the menu items above exist on my machine, but this command brought it right up.
â Reb.Cabin
Jan 30 '17 at 3:28
add a comment |Â
1
I had no other way of finding the $#@! window. None of the menu items above exist on my machine, but this command brought it right up.
â Reb.Cabin
Jan 30 '17 at 3:28
1
1
I had no other way of finding the $#@! window. None of the menu items above exist on my machine, but this command brought it right up.
â Reb.Cabin
Jan 30 '17 at 3:28
I had no other way of finding the $#@! window. None of the menu items above exist on my machine, but this command brought it right up.
â Reb.Cabin
Jan 30 '17 at 3:28
add a comment |Â
up vote
6
down vote
You can use GNOME Startup Application. 
Click the Add button and then add the full command to open the application you want. If you don't know the path of the command you can do
which name_of_commmand
add a comment |Â
up vote
6
down vote
You can use GNOME Startup Application. 
Click the Add button and then add the full command to open the application you want. If you don't know the path of the command you can do
which name_of_commmand
add a comment |Â
up vote
6
down vote
up vote
6
down vote
You can use GNOME Startup Application. 
Click the Add button and then add the full command to open the application you want. If you don't know the path of the command you can do
which name_of_commmand
You can use GNOME Startup Application. 
Click the Add button and then add the full command to open the application you want. If you don't know the path of the command you can do
which name_of_commmand
answered Feb 24 '11 at 4:27
amh
5271514
5271514
add a comment |Â
add a comment |Â
up vote
4
down vote
Also to put a BATCH FILE into start up applications to run after user login....
type at the command line in start up applications in the field Command:
gnome-terminal -e "/batch-path/batch-name.sh"
gnome-terminal: open the terminal after user login with current user privileges-e: set the terminal to execute the batch file/batch-path/batch-name.sh: is the batch full path and full name
Remember than the file batch permissions to set the flag Allow executing file as a program to ON.
add a comment |Â
up vote
4
down vote
Also to put a BATCH FILE into start up applications to run after user login....
type at the command line in start up applications in the field Command:
gnome-terminal -e "/batch-path/batch-name.sh"
gnome-terminal: open the terminal after user login with current user privileges-e: set the terminal to execute the batch file/batch-path/batch-name.sh: is the batch full path and full name
Remember than the file batch permissions to set the flag Allow executing file as a program to ON.
add a comment |Â
up vote
4
down vote
up vote
4
down vote
Also to put a BATCH FILE into start up applications to run after user login....
type at the command line in start up applications in the field Command:
gnome-terminal -e "/batch-path/batch-name.sh"
gnome-terminal: open the terminal after user login with current user privileges-e: set the terminal to execute the batch file/batch-path/batch-name.sh: is the batch full path and full name
Remember than the file batch permissions to set the flag Allow executing file as a program to ON.
Also to put a BATCH FILE into start up applications to run after user login....
type at the command line in start up applications in the field Command:
gnome-terminal -e "/batch-path/batch-name.sh"
gnome-terminal: open the terminal after user login with current user privileges-e: set the terminal to execute the batch file/batch-path/batch-name.sh: is the batch full path and full name
Remember than the file batch permissions to set the flag Allow executing file as a program to ON.
edited Aug 9 '17 at 10:50
Zanna
47.9k13119227
47.9k13119227
answered Jun 19 '13 at 22:16
Rudy Mario Moretti
413
413
add a comment |Â
add a comment |Â
up vote
4
down vote
Take a look at $XDG_CONFIG_DIRS/autostart directory:
$ echo $XDG_CONFIG_DIRS/autostart
/etc/xdg/xdg-kde-plasma:/usr/share/upstart/xdg:/etc/xdg/autostart
which says there are 3 directories in this example. I wanted to prune the nautilus entry
sudo rm /etc/xdg/autostart/nautilus-autostart.desktop
otherwise if you can add it, create a Desktop entry file: sudo touch /etc/xdg/autostart/my-shell-autostart.desktop add these contents:
[Desktop Entry]
Name=foo
Terminal=false
Exec=/path/shell.sh
Type=Application
Icon=/path/icon.png
Categories=Utility;
add a comment |Â
up vote
4
down vote
Take a look at $XDG_CONFIG_DIRS/autostart directory:
$ echo $XDG_CONFIG_DIRS/autostart
/etc/xdg/xdg-kde-plasma:/usr/share/upstart/xdg:/etc/xdg/autostart
which says there are 3 directories in this example. I wanted to prune the nautilus entry
sudo rm /etc/xdg/autostart/nautilus-autostart.desktop
otherwise if you can add it, create a Desktop entry file: sudo touch /etc/xdg/autostart/my-shell-autostart.desktop add these contents:
[Desktop Entry]
Name=foo
Terminal=false
Exec=/path/shell.sh
Type=Application
Icon=/path/icon.png
Categories=Utility;
add a comment |Â
up vote
4
down vote
up vote
4
down vote
Take a look at $XDG_CONFIG_DIRS/autostart directory:
$ echo $XDG_CONFIG_DIRS/autostart
/etc/xdg/xdg-kde-plasma:/usr/share/upstart/xdg:/etc/xdg/autostart
which says there are 3 directories in this example. I wanted to prune the nautilus entry
sudo rm /etc/xdg/autostart/nautilus-autostart.desktop
otherwise if you can add it, create a Desktop entry file: sudo touch /etc/xdg/autostart/my-shell-autostart.desktop add these contents:
[Desktop Entry]
Name=foo
Terminal=false
Exec=/path/shell.sh
Type=Application
Icon=/path/icon.png
Categories=Utility;
Take a look at $XDG_CONFIG_DIRS/autostart directory:
$ echo $XDG_CONFIG_DIRS/autostart
/etc/xdg/xdg-kde-plasma:/usr/share/upstart/xdg:/etc/xdg/autostart
which says there are 3 directories in this example. I wanted to prune the nautilus entry
sudo rm /etc/xdg/autostart/nautilus-autostart.desktop
otherwise if you can add it, create a Desktop entry file: sudo touch /etc/xdg/autostart/my-shell-autostart.desktop add these contents:
[Desktop Entry]
Name=foo
Terminal=false
Exec=/path/shell.sh
Type=Application
Icon=/path/icon.png
Categories=Utility;
edited Aug 9 '17 at 10:52
Zanna
47.9k13119227
47.9k13119227
answered Oct 25 '14 at 11:28
Philippe Gachoud
2,9772336
2,9772336
add a comment |Â
add a comment |Â
up vote
4
down vote
Ubuntu 13.10 with UNITY Instructions
To do this with a command that requires sudo is a bit tricky.
In my case, I wanted to disable the PSMOUSE driver using the command sudo rmmod psmouse to prevent a mouse click problem that randomly manifests itself. See Dealing with Mouse and Touchpad Freezes in Linux for more info on this problem. I got tired of entering it on every boot.
On my install, the ~/.config folder did not have an autostart sub-folder, so I created one. This enabled my Startup Applications Preferences settings to be saved.
In order to toggle visibility of hidden startup applications, you can use the following commands.
To show them :
sudo sed -i 's/NoDisplay=true/NoDisplay=false/g' /etc/xdg/autostart/*.desktop
To hide them :
sudo sed -i 's/NoDisplay=false/NoDisplay=true/g' /etc/xdg/autostart/*.desktop
Configure your command as per above posts in the Startup Applications Perferences window.
Name: Fix Mouse
Command: sudo rmmod psmouse
Comment: Fix Mouse
Then you have to edit the /etc/sudoers file using sudo visudo.
Add a line that contains the following info:
username ALL=(ALL) NOPASSWD: /sbin/rmmod
You must enter this line below the line which starts with %admin. I added my line to the end of the file.
It is IMPORTANT to use sudo visudo to edit this file as making a mistake will prevent you from being able to do any sudo commands at all. If that happens, boot in recovery mode and undo your edits, then try using sudo visudo.
Note:
Initially I tried using a bash script to run my the command indirectly, but this didn't work. I had to put sudo rmmod psmouse directly in the Edit Startup Program window.
add a comment |Â
up vote
4
down vote
Ubuntu 13.10 with UNITY Instructions
To do this with a command that requires sudo is a bit tricky.
In my case, I wanted to disable the PSMOUSE driver using the command sudo rmmod psmouse to prevent a mouse click problem that randomly manifests itself. See Dealing with Mouse and Touchpad Freezes in Linux for more info on this problem. I got tired of entering it on every boot.
On my install, the ~/.config folder did not have an autostart sub-folder, so I created one. This enabled my Startup Applications Preferences settings to be saved.
In order to toggle visibility of hidden startup applications, you can use the following commands.
To show them :
sudo sed -i 's/NoDisplay=true/NoDisplay=false/g' /etc/xdg/autostart/*.desktop
To hide them :
sudo sed -i 's/NoDisplay=false/NoDisplay=true/g' /etc/xdg/autostart/*.desktop
Configure your command as per above posts in the Startup Applications Perferences window.
Name: Fix Mouse
Command: sudo rmmod psmouse
Comment: Fix Mouse
Then you have to edit the /etc/sudoers file using sudo visudo.
Add a line that contains the following info:
username ALL=(ALL) NOPASSWD: /sbin/rmmod
You must enter this line below the line which starts with %admin. I added my line to the end of the file.
It is IMPORTANT to use sudo visudo to edit this file as making a mistake will prevent you from being able to do any sudo commands at all. If that happens, boot in recovery mode and undo your edits, then try using sudo visudo.
Note:
Initially I tried using a bash script to run my the command indirectly, but this didn't work. I had to put sudo rmmod psmouse directly in the Edit Startup Program window.
add a comment |Â
up vote
4
down vote
up vote
4
down vote
Ubuntu 13.10 with UNITY Instructions
To do this with a command that requires sudo is a bit tricky.
In my case, I wanted to disable the PSMOUSE driver using the command sudo rmmod psmouse to prevent a mouse click problem that randomly manifests itself. See Dealing with Mouse and Touchpad Freezes in Linux for more info on this problem. I got tired of entering it on every boot.
On my install, the ~/.config folder did not have an autostart sub-folder, so I created one. This enabled my Startup Applications Preferences settings to be saved.
In order to toggle visibility of hidden startup applications, you can use the following commands.
To show them :
sudo sed -i 's/NoDisplay=true/NoDisplay=false/g' /etc/xdg/autostart/*.desktop
To hide them :
sudo sed -i 's/NoDisplay=false/NoDisplay=true/g' /etc/xdg/autostart/*.desktop
Configure your command as per above posts in the Startup Applications Perferences window.
Name: Fix Mouse
Command: sudo rmmod psmouse
Comment: Fix Mouse
Then you have to edit the /etc/sudoers file using sudo visudo.
Add a line that contains the following info:
username ALL=(ALL) NOPASSWD: /sbin/rmmod
You must enter this line below the line which starts with %admin. I added my line to the end of the file.
It is IMPORTANT to use sudo visudo to edit this file as making a mistake will prevent you from being able to do any sudo commands at all. If that happens, boot in recovery mode and undo your edits, then try using sudo visudo.
Note:
Initially I tried using a bash script to run my the command indirectly, but this didn't work. I had to put sudo rmmod psmouse directly in the Edit Startup Program window.
Ubuntu 13.10 with UNITY Instructions
To do this with a command that requires sudo is a bit tricky.
In my case, I wanted to disable the PSMOUSE driver using the command sudo rmmod psmouse to prevent a mouse click problem that randomly manifests itself. See Dealing with Mouse and Touchpad Freezes in Linux for more info on this problem. I got tired of entering it on every boot.
On my install, the ~/.config folder did not have an autostart sub-folder, so I created one. This enabled my Startup Applications Preferences settings to be saved.
In order to toggle visibility of hidden startup applications, you can use the following commands.
To show them :
sudo sed -i 's/NoDisplay=true/NoDisplay=false/g' /etc/xdg/autostart/*.desktop
To hide them :
sudo sed -i 's/NoDisplay=false/NoDisplay=true/g' /etc/xdg/autostart/*.desktop
Configure your command as per above posts in the Startup Applications Perferences window.
Name: Fix Mouse
Command: sudo rmmod psmouse
Comment: Fix Mouse
Then you have to edit the /etc/sudoers file using sudo visudo.
Add a line that contains the following info:
username ALL=(ALL) NOPASSWD: /sbin/rmmod
You must enter this line below the line which starts with %admin. I added my line to the end of the file.
It is IMPORTANT to use sudo visudo to edit this file as making a mistake will prevent you from being able to do any sudo commands at all. If that happens, boot in recovery mode and undo your edits, then try using sudo visudo.
Note:
Initially I tried using a bash script to run my the command indirectly, but this didn't work. I had to put sudo rmmod psmouse directly in the Edit Startup Program window.
edited Aug 9 '17 at 10:54
Zanna
47.9k13119227
47.9k13119227
answered Mar 11 '14 at 13:29
gone
282110
282110
add a comment |Â
add a comment |Â
up vote
3
down vote
For Ubuntu 12.04,
Launch Startup Application from the top right menu

Without clicking on Add, open Dash and type the application you want running at startup e.g. Skype

Drag the application to the Startup application window. If Dash windows is too big that you can't drag your app outside, use the restore window button (shown in the previous image) at the top left corner. Final list looks like this:

Well Step 1 doesn't work for Ubuntu 16.10. But the possibility of drag and drop the app into the autostart window works and is great.
â eDeviser
Nov 4 '16 at 8:17
add a comment |Â
up vote
3
down vote
For Ubuntu 12.04,
Launch Startup Application from the top right menu

Without clicking on Add, open Dash and type the application you want running at startup e.g. Skype

Drag the application to the Startup application window. If Dash windows is too big that you can't drag your app outside, use the restore window button (shown in the previous image) at the top left corner. Final list looks like this:

Well Step 1 doesn't work for Ubuntu 16.10. But the possibility of drag and drop the app into the autostart window works and is great.
â eDeviser
Nov 4 '16 at 8:17
add a comment |Â
up vote
3
down vote
up vote
3
down vote
For Ubuntu 12.04,
Launch Startup Application from the top right menu

Without clicking on Add, open Dash and type the application you want running at startup e.g. Skype

Drag the application to the Startup application window. If Dash windows is too big that you can't drag your app outside, use the restore window button (shown in the previous image) at the top left corner. Final list looks like this:

For Ubuntu 12.04,
Launch Startup Application from the top right menu

Without clicking on Add, open Dash and type the application you want running at startup e.g. Skype

Drag the application to the Startup application window. If Dash windows is too big that you can't drag your app outside, use the restore window button (shown in the previous image) at the top left corner. Final list looks like this:

edited Oct 8 '15 at 9:32
hg8
9,314115287
9,314115287
answered Mar 26 '14 at 12:31
Malay Desai
1312
1312
Well Step 1 doesn't work for Ubuntu 16.10. But the possibility of drag and drop the app into the autostart window works and is great.
â eDeviser
Nov 4 '16 at 8:17
add a comment |Â
Well Step 1 doesn't work for Ubuntu 16.10. But the possibility of drag and drop the app into the autostart window works and is great.
â eDeviser
Nov 4 '16 at 8:17
Well Step 1 doesn't work for Ubuntu 16.10. But the possibility of drag and drop the app into the autostart window works and is great.
â eDeviser
Nov 4 '16 at 8:17
Well Step 1 doesn't work for Ubuntu 16.10. But the possibility of drag and drop the app into the autostart window works and is great.
â eDeviser
Nov 4 '16 at 8:17
add a comment |Â
up vote
2
down vote
You can use the feature to Remember Currently Running Applications in the System/Preferences/Startup Applications preferences window. Which (when enabled) will "remember" all the programs that you are using and will re-open them after a reboot or when starting the system for the first time in a day.
This is great when you don't have enough time to make notes of what were you doing the last time and you wish an application to open if it was running the last time.
If you wish to remove an application from this feature simply close it and go to this function and press the "Remember Currently Running Application" in order to refresh the list of the programs that will be opened the next time.

The only thing I do not like about this one is that your/my wireless is slower to come up than my browser is in loading when it was active. Every tab needs to be reloaded after wireless picks up.
â Rinzwind
May 8 '11 at 17:17
Good point. That's why I don't save that preference with the browser open :) Docky is owning the control for my browser with an icon on it. But yours is a good point! Thank you.
â Geppettvs D'Constanzo
May 9 '11 at 20:50
add a comment |Â
up vote
2
down vote
You can use the feature to Remember Currently Running Applications in the System/Preferences/Startup Applications preferences window. Which (when enabled) will "remember" all the programs that you are using and will re-open them after a reboot or when starting the system for the first time in a day.
This is great when you don't have enough time to make notes of what were you doing the last time and you wish an application to open if it was running the last time.
If you wish to remove an application from this feature simply close it and go to this function and press the "Remember Currently Running Application" in order to refresh the list of the programs that will be opened the next time.

The only thing I do not like about this one is that your/my wireless is slower to come up than my browser is in loading when it was active. Every tab needs to be reloaded after wireless picks up.
â Rinzwind
May 8 '11 at 17:17
Good point. That's why I don't save that preference with the browser open :) Docky is owning the control for my browser with an icon on it. But yours is a good point! Thank you.
â Geppettvs D'Constanzo
May 9 '11 at 20:50
add a comment |Â
up vote
2
down vote
up vote
2
down vote
You can use the feature to Remember Currently Running Applications in the System/Preferences/Startup Applications preferences window. Which (when enabled) will "remember" all the programs that you are using and will re-open them after a reboot or when starting the system for the first time in a day.
This is great when you don't have enough time to make notes of what were you doing the last time and you wish an application to open if it was running the last time.
If you wish to remove an application from this feature simply close it and go to this function and press the "Remember Currently Running Application" in order to refresh the list of the programs that will be opened the next time.

You can use the feature to Remember Currently Running Applications in the System/Preferences/Startup Applications preferences window. Which (when enabled) will "remember" all the programs that you are using and will re-open them after a reboot or when starting the system for the first time in a day.
This is great when you don't have enough time to make notes of what were you doing the last time and you wish an application to open if it was running the last time.
If you wish to remove an application from this feature simply close it and go to this function and press the "Remember Currently Running Application" in order to refresh the list of the programs that will be opened the next time.

edited Aug 9 '17 at 10:55
Zanna
47.9k13119227
47.9k13119227
answered Feb 24 '11 at 16:23
Geppettvs D'Constanzo
15.9k33179
15.9k33179
The only thing I do not like about this one is that your/my wireless is slower to come up than my browser is in loading when it was active. Every tab needs to be reloaded after wireless picks up.
â Rinzwind
May 8 '11 at 17:17
Good point. That's why I don't save that preference with the browser open :) Docky is owning the control for my browser with an icon on it. But yours is a good point! Thank you.
â Geppettvs D'Constanzo
May 9 '11 at 20:50
add a comment |Â
The only thing I do not like about this one is that your/my wireless is slower to come up than my browser is in loading when it was active. Every tab needs to be reloaded after wireless picks up.
â Rinzwind
May 8 '11 at 17:17
Good point. That's why I don't save that preference with the browser open :) Docky is owning the control for my browser with an icon on it. But yours is a good point! Thank you.
â Geppettvs D'Constanzo
May 9 '11 at 20:50
The only thing I do not like about this one is that your/my wireless is slower to come up than my browser is in loading when it was active. Every tab needs to be reloaded after wireless picks up.
â Rinzwind
May 8 '11 at 17:17
The only thing I do not like about this one is that your/my wireless is slower to come up than my browser is in loading when it was active. Every tab needs to be reloaded after wireless picks up.
â Rinzwind
May 8 '11 at 17:17
Good point. That's why I don't save that preference with the browser open :) Docky is owning the control for my browser with an icon on it. But yours is a good point! Thank you.
â Geppettvs D'Constanzo
May 9 '11 at 20:50
Good point. That's why I don't save that preference with the browser open :) Docky is owning the control for my browser with an icon on it. But yours is a good point! Thank you.
â Geppettvs D'Constanzo
May 9 '11 at 20:50
add a comment |Â
up vote
1
down vote
For a simple, portable way to do this, you can use Cron. Run crontab -e to edit your user's crontab; add @reboot command to run command on each boot.
add a comment |Â
up vote
1
down vote
For a simple, portable way to do this, you can use Cron. Run crontab -e to edit your user's crontab; add @reboot command to run command on each boot.
add a comment |Â
up vote
1
down vote
up vote
1
down vote
For a simple, portable way to do this, you can use Cron. Run crontab -e to edit your user's crontab; add @reboot command to run command on each boot.
For a simple, portable way to do this, you can use Cron. Run crontab -e to edit your user's crontab; add @reboot command to run command on each boot.
answered May 27 '15 at 17:27
appas
1607
1607
add a comment |Â
add a comment |Â
up vote
1
down vote
Type "startup applications" in your Unity Dash and it will list you that application which you can click to open. After opening it, you can add your application there.
add a comment |Â
up vote
1
down vote
Type "startup applications" in your Unity Dash and it will list you that application which you can click to open. After opening it, you can add your application there.
add a comment |Â
up vote
1
down vote
up vote
1
down vote
Type "startup applications" in your Unity Dash and it will list you that application which you can click to open. After opening it, you can add your application there.
Type "startup applications" in your Unity Dash and it will list you that application which you can click to open. After opening it, you can add your application there.
edited Apr 5 at 18:51
wjandrea
7,14142155
7,14142155
answered Sep 12 '12 at 7:19
Ten-Coin
54.2k80210297
54.2k80210297
add a comment |Â
add a comment |Â
up vote
0
down vote
Alt+F2, then gnome-help ghelp:user-guide?gosstartsession-2.
Click Run, wait a sec, and then follow the directions.
cool I know the part to add but not the commands... so do I google them? or should I hit alt+f2 then put the name of the program... if it finds it, I'll say run in terminal... to display the command?
â user11383
Feb 24 '11 at 4:43
@Bob, which application do you want to run on start up?
â Oxwivi
Feb 24 '11 at 5:35
add a comment |Â
up vote
0
down vote
Alt+F2, then gnome-help ghelp:user-guide?gosstartsession-2.
Click Run, wait a sec, and then follow the directions.
cool I know the part to add but not the commands... so do I google them? or should I hit alt+f2 then put the name of the program... if it finds it, I'll say run in terminal... to display the command?
â user11383
Feb 24 '11 at 4:43
@Bob, which application do you want to run on start up?
â Oxwivi
Feb 24 '11 at 5:35
add a comment |Â
up vote
0
down vote
up vote
0
down vote
Alt+F2, then gnome-help ghelp:user-guide?gosstartsession-2.
Click Run, wait a sec, and then follow the directions.
Alt+F2, then gnome-help ghelp:user-guide?gosstartsession-2.
Click Run, wait a sec, and then follow the directions.
edited Mar 19 '13 at 18:14
Lucio
11.9k2180152
11.9k2180152
answered Feb 24 '11 at 4:13
Volomike
1,27641431
1,27641431
cool I know the part to add but not the commands... so do I google them? or should I hit alt+f2 then put the name of the program... if it finds it, I'll say run in terminal... to display the command?
â user11383
Feb 24 '11 at 4:43
@Bob, which application do you want to run on start up?
â Oxwivi
Feb 24 '11 at 5:35
add a comment |Â
cool I know the part to add but not the commands... so do I google them? or should I hit alt+f2 then put the name of the program... if it finds it, I'll say run in terminal... to display the command?
â user11383
Feb 24 '11 at 4:43
@Bob, which application do you want to run on start up?
â Oxwivi
Feb 24 '11 at 5:35
cool I know the part to add but not the commands... so do I google them? or should I hit alt+f2 then put the name of the program... if it finds it, I'll say run in terminal... to display the command?
â user11383
Feb 24 '11 at 4:43
cool I know the part to add but not the commands... so do I google them? or should I hit alt+f2 then put the name of the program... if it finds it, I'll say run in terminal... to display the command?
â user11383
Feb 24 '11 at 4:43
@Bob, which application do you want to run on start up?
â Oxwivi
Feb 24 '11 at 5:35
@Bob, which application do you want to run on start up?
â Oxwivi
Feb 24 '11 at 5:35
add a comment |Â
protected by heemayl Apr 11 '16 at 14:07
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?