Launch program on startup in background Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern)Start Transmission in the backgroundChrome puts itself on Startup ApplicationsAdd a startup application in the background in UbuntuGNOME 14.04Syndaemon won't start as startup applicationHow to run Gnome Startup Applications in i3?How to disable Plank application on Ubuntu startupStart Skype in background18.04 Add startup program doesn't keep what I've addedRunning startup application in background
Why weren't discrete x86 CPUs ever used in game hardware?
Can anything be seen from the center of the Boötes void? How dark would it be?
How to install press fit bottom bracket into new frame
Using audio cues to encourage good posture
Sum letters are not two different
What is the difference between globalisation and imperialism?
How to write this math term? with cases it isn't working
Drawing without replacement: why is the order of draw irrelevant?
Most bit efficient text communication method?
Has negative voting ever been officially implemented in elections, or seriously proposed, or even studied?
Why do early math courses focus on the cross sections of a cone and not on other 3D objects?
Question about debouncing - delay of state change
Project Euler #1 in C++
What is the topology associated with the algebras for the ultrafilter monad?
Find 108 by using 3,4,6
How to tell that you are a giant?
Significance of Cersei's obsession with elephants?
ArcGIS Pro Python arcpy.CreatePersonalGDB_management
What is this clumpy 20-30cm high yellow-flowered plant?
Morning, Afternoon, Night Kanji
Is there a kind of relay only consumes power when switching?
SF book about people trapped in a series of worlds they imagine
Generate an RGB colour grid
Did Krishna say in Bhagavad Gita "I am in every living being"
Launch program on startup in background
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern)Start Transmission in the backgroundChrome puts itself on Startup ApplicationsAdd a startup application in the background in UbuntuGNOME 14.04Syndaemon won't start as startup applicationHow to run Gnome Startup Applications in i3?How to disable Plank application on Ubuntu startupStart Skype in background18.04 Add startup program doesn't keep what I've addedRunning startup application in background
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I'm running AutoKey on Ubuntu 18.04, I added it to the startup applications, but I don't want its window pops up after starting my computer, can I make it launch in the background?
18.04 startup startup-applications
bumped to the homepage by Community♦ 1 min ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I'm running AutoKey on Ubuntu 18.04, I added it to the startup applications, but I don't want its window pops up after starting my computer, can I make it launch in the background?
18.04 startup startup-applications
bumped to the homepage by Community♦ 1 min ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I'm running AutoKey on Ubuntu 18.04, I added it to the startup applications, but I don't want its window pops up after starting my computer, can I make it launch in the background?
18.04 startup startup-applications
I'm running AutoKey on Ubuntu 18.04, I added it to the startup applications, but I don't want its window pops up after starting my computer, can I make it launch in the background?
18.04 startup startup-applications
18.04 startup startup-applications
asked May 20 '18 at 11:06
IvesIves
173214
173214
bumped to the homepage by Community♦ 1 min ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 1 min ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
To run a program on startup, you simply should add the command that runs it at the end of the .bashrc file, and to make it run in the background, add &
to it.
Example :
Let's say that the command to run autokey is autokey
, all what you have to do is:
gedit ~/.bashrc
Then go to the end of the file and type autokey &
.
Then save and exit.
At the next restart, it should start on startup and in background.
Hi, I also have a similar query to that of "Ives". I want to auto start "google chrome browser" at the startup in the "background". I dont want it to open as a window. In the "Startup Applications" app will the following work if i want to achieve the above? usrbingoogle-chrome-stable %U &
– newforubuntulinux
May 21 '18 at 11:26
First, find which command that opens chrome, then put it in the end of the ~/.bashrc file. For example, ifchrome
orgoogle-chrome
is the command to run in the terminal to open Google chrome, just typechrome &
(orgoogle-chrome &
) in the end of the~/.bashrc
file and it should open in background at startup the next reboot.
– singrium
May 21 '18 at 12:27
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "89"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1038349%2flaunch-program-on-startup-in-background%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
To run a program on startup, you simply should add the command that runs it at the end of the .bashrc file, and to make it run in the background, add &
to it.
Example :
Let's say that the command to run autokey is autokey
, all what you have to do is:
gedit ~/.bashrc
Then go to the end of the file and type autokey &
.
Then save and exit.
At the next restart, it should start on startup and in background.
Hi, I also have a similar query to that of "Ives". I want to auto start "google chrome browser" at the startup in the "background". I dont want it to open as a window. In the "Startup Applications" app will the following work if i want to achieve the above? usrbingoogle-chrome-stable %U &
– newforubuntulinux
May 21 '18 at 11:26
First, find which command that opens chrome, then put it in the end of the ~/.bashrc file. For example, ifchrome
orgoogle-chrome
is the command to run in the terminal to open Google chrome, just typechrome &
(orgoogle-chrome &
) in the end of the~/.bashrc
file and it should open in background at startup the next reboot.
– singrium
May 21 '18 at 12:27
add a comment |
To run a program on startup, you simply should add the command that runs it at the end of the .bashrc file, and to make it run in the background, add &
to it.
Example :
Let's say that the command to run autokey is autokey
, all what you have to do is:
gedit ~/.bashrc
Then go to the end of the file and type autokey &
.
Then save and exit.
At the next restart, it should start on startup and in background.
Hi, I also have a similar query to that of "Ives". I want to auto start "google chrome browser" at the startup in the "background". I dont want it to open as a window. In the "Startup Applications" app will the following work if i want to achieve the above? usrbingoogle-chrome-stable %U &
– newforubuntulinux
May 21 '18 at 11:26
First, find which command that opens chrome, then put it in the end of the ~/.bashrc file. For example, ifchrome
orgoogle-chrome
is the command to run in the terminal to open Google chrome, just typechrome &
(orgoogle-chrome &
) in the end of the~/.bashrc
file and it should open in background at startup the next reboot.
– singrium
May 21 '18 at 12:27
add a comment |
To run a program on startup, you simply should add the command that runs it at the end of the .bashrc file, and to make it run in the background, add &
to it.
Example :
Let's say that the command to run autokey is autokey
, all what you have to do is:
gedit ~/.bashrc
Then go to the end of the file and type autokey &
.
Then save and exit.
At the next restart, it should start on startup and in background.
To run a program on startup, you simply should add the command that runs it at the end of the .bashrc file, and to make it run in the background, add &
to it.
Example :
Let's say that the command to run autokey is autokey
, all what you have to do is:
gedit ~/.bashrc
Then go to the end of the file and type autokey &
.
Then save and exit.
At the next restart, it should start on startup and in background.
edited Nov 23 '18 at 10:03
answered May 20 '18 at 11:44
singriumsingrium
1,306624
1,306624
Hi, I also have a similar query to that of "Ives". I want to auto start "google chrome browser" at the startup in the "background". I dont want it to open as a window. In the "Startup Applications" app will the following work if i want to achieve the above? usrbingoogle-chrome-stable %U &
– newforubuntulinux
May 21 '18 at 11:26
First, find which command that opens chrome, then put it in the end of the ~/.bashrc file. For example, ifchrome
orgoogle-chrome
is the command to run in the terminal to open Google chrome, just typechrome &
(orgoogle-chrome &
) in the end of the~/.bashrc
file and it should open in background at startup the next reboot.
– singrium
May 21 '18 at 12:27
add a comment |
Hi, I also have a similar query to that of "Ives". I want to auto start "google chrome browser" at the startup in the "background". I dont want it to open as a window. In the "Startup Applications" app will the following work if i want to achieve the above? usrbingoogle-chrome-stable %U &
– newforubuntulinux
May 21 '18 at 11:26
First, find which command that opens chrome, then put it in the end of the ~/.bashrc file. For example, ifchrome
orgoogle-chrome
is the command to run in the terminal to open Google chrome, just typechrome &
(orgoogle-chrome &
) in the end of the~/.bashrc
file and it should open in background at startup the next reboot.
– singrium
May 21 '18 at 12:27
Hi, I also have a similar query to that of "Ives". I want to auto start "google chrome browser" at the startup in the "background". I dont want it to open as a window. In the "Startup Applications" app will the following work if i want to achieve the above? usrbingoogle-chrome-stable %U &
– newforubuntulinux
May 21 '18 at 11:26
Hi, I also have a similar query to that of "Ives". I want to auto start "google chrome browser" at the startup in the "background". I dont want it to open as a window. In the "Startup Applications" app will the following work if i want to achieve the above? usrbingoogle-chrome-stable %U &
– newforubuntulinux
May 21 '18 at 11:26
First, find which command that opens chrome, then put it in the end of the ~/.bashrc file. For example, if
chrome
or google-chrome
is the command to run in the terminal to open Google chrome, just type chrome &
(or google-chrome &
) in the end of the ~/.bashrc
file and it should open in background at startup the next reboot.– singrium
May 21 '18 at 12:27
First, find which command that opens chrome, then put it in the end of the ~/.bashrc file. For example, if
chrome
or google-chrome
is the command to run in the terminal to open Google chrome, just type chrome &
(or google-chrome &
) in the end of the ~/.bashrc
file and it should open in background at startup the next reboot.– singrium
May 21 '18 at 12:27
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1038349%2flaunch-program-on-startup-in-background%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown