How to launch google-chrome/chromium application shortcut in fullscreen/kiosk mode
I'm trying to boot a chrome application shortcut in full screen (kiosk mode).
Launching as an application shortcut is straightforward by appending the command --app=http://website.com. But the kiosk/fullscreen mode --kiosk or --start-maximized
doesn't work.
I've looked up the commands through man google-chrome. I doesn't look like the option exists.
Is this option hidden, or are there alternatives? A way of starting chrome in fullscreen by default? I'm guessing that there is a way to fake a key press on F11 after chrome has started. Though this really isn't an ideal solution.
google-chrome chromium fullscreen manpage kiosk
add a comment |
I'm trying to boot a chrome application shortcut in full screen (kiosk mode).
Launching as an application shortcut is straightforward by appending the command --app=http://website.com. But the kiosk/fullscreen mode --kiosk or --start-maximized
doesn't work.
I've looked up the commands through man google-chrome. I doesn't look like the option exists.
Is this option hidden, or are there alternatives? A way of starting chrome in fullscreen by default? I'm guessing that there is a way to fake a key press on F11 after chrome has started. Though this really isn't an ideal solution.
google-chrome chromium fullscreen manpage kiosk
Have you triedgoogle-chrome --help?
– MadMike
Oct 14 '13 at 14:17
yes, its the same command as 'man google-chrome'
– rom
Oct 14 '13 at 17:03
I guess it's a matter of the version in use becausegoogle-chrome --start-maximized --app=http://website.comworks for me.
– Matheus Santana
9 hours ago
add a comment |
I'm trying to boot a chrome application shortcut in full screen (kiosk mode).
Launching as an application shortcut is straightforward by appending the command --app=http://website.com. But the kiosk/fullscreen mode --kiosk or --start-maximized
doesn't work.
I've looked up the commands through man google-chrome. I doesn't look like the option exists.
Is this option hidden, or are there alternatives? A way of starting chrome in fullscreen by default? I'm guessing that there is a way to fake a key press on F11 after chrome has started. Though this really isn't an ideal solution.
google-chrome chromium fullscreen manpage kiosk
I'm trying to boot a chrome application shortcut in full screen (kiosk mode).
Launching as an application shortcut is straightforward by appending the command --app=http://website.com. But the kiosk/fullscreen mode --kiosk or --start-maximized
doesn't work.
I've looked up the commands through man google-chrome. I doesn't look like the option exists.
Is this option hidden, or are there alternatives? A way of starting chrome in fullscreen by default? I'm guessing that there is a way to fake a key press on F11 after chrome has started. Though this really isn't an ideal solution.
google-chrome chromium fullscreen manpage kiosk
google-chrome chromium fullscreen manpage kiosk
edited Oct 15 '13 at 9:40
MadMike
3,80172244
3,80172244
asked Oct 14 '13 at 11:42
romrom
103117
103117
Have you triedgoogle-chrome --help?
– MadMike
Oct 14 '13 at 14:17
yes, its the same command as 'man google-chrome'
– rom
Oct 14 '13 at 17:03
I guess it's a matter of the version in use becausegoogle-chrome --start-maximized --app=http://website.comworks for me.
– Matheus Santana
9 hours ago
add a comment |
Have you triedgoogle-chrome --help?
– MadMike
Oct 14 '13 at 14:17
yes, its the same command as 'man google-chrome'
– rom
Oct 14 '13 at 17:03
I guess it's a matter of the version in use becausegoogle-chrome --start-maximized --app=http://website.comworks for me.
– Matheus Santana
9 hours ago
Have you tried
google-chrome --help?– MadMike
Oct 14 '13 at 14:17
Have you tried
google-chrome --help?– MadMike
Oct 14 '13 at 14:17
yes, its the same command as 'man google-chrome'
– rom
Oct 14 '13 at 17:03
yes, its the same command as 'man google-chrome'
– rom
Oct 14 '13 at 17:03
I guess it's a matter of the version in use because
google-chrome --start-maximized --app=http://website.com works for me.– Matheus Santana
9 hours ago
I guess it's a matter of the version in use because
google-chrome --start-maximized --app=http://website.com works for me.– Matheus Santana
9 hours ago
add a comment |
3 Answers
3
active
oldest
votes
How to use Chrome browser in kiosk-mode
Use it like this:
google-chrome --kiosk http://example.com
chromium-browser --kiosk http://example.com
tested with Ubuntu 12.04, google-chrome-stable 30.0.1599.66-1 and chromium-browser 28.0.1500.71-0ubuntu1.12.04. But only if there is no other instance of the browser running.
So close all browser windows and then use it with the option and it should definitely work as expected.
Other things I've learned
Checking --help or man google-chrome didn't help because:
Chromium has hundreds of undocumented command-line flags that are added
and removed at the whim of the developers. Here, we document rela‐
tively stable flags.
So --kiosk is an option that is deliberately un-document, because it might disappear at a whim... which it didn't since over 2 years. But, well you have been warned.
Nice one, works fine on 13.04 (though I am running legacy fullscreen support). I take it my issue was that I already had a chrome instance running. Was hoping there was a kiosk mode that would fall back to an application shortcut when exiting fullscreen. A tall order I suppose.
– rom
Oct 15 '13 at 9:17
Confirmed to work on my installation of Raspbian (Raspberry pi 2) with chromium (Full version string: "Version 22.0.1229.94 Built on Debian 7.0, running on Debian 7.8 (161065)")
– rinogo
Feb 4 '16 at 21:16
add a comment |
Peter Beverloo has comprised a list of command line options at http://peter.sh/experiments/chromium-command-line-switches/
add a comment |
In my case only --kiosk didn't help that much because I wanted to run in app mode (--app=URL) -- which disables some distractions like navbar or bookmarks.
I've found from Peter Beverloo's link in other answer this --start-fullscreen flag. So OP would probably go with something like
TLDR
$ google-chrome --start-fullscreen --app=http://website.com
New contributor
Matheus Santana is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
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%2f358898%2fhow-to-launch-google-chrome-chromium-application-shortcut-in-fullscreen-kiosk-mo%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
How to use Chrome browser in kiosk-mode
Use it like this:
google-chrome --kiosk http://example.com
chromium-browser --kiosk http://example.com
tested with Ubuntu 12.04, google-chrome-stable 30.0.1599.66-1 and chromium-browser 28.0.1500.71-0ubuntu1.12.04. But only if there is no other instance of the browser running.
So close all browser windows and then use it with the option and it should definitely work as expected.
Other things I've learned
Checking --help or man google-chrome didn't help because:
Chromium has hundreds of undocumented command-line flags that are added
and removed at the whim of the developers. Here, we document rela‐
tively stable flags.
So --kiosk is an option that is deliberately un-document, because it might disappear at a whim... which it didn't since over 2 years. But, well you have been warned.
Nice one, works fine on 13.04 (though I am running legacy fullscreen support). I take it my issue was that I already had a chrome instance running. Was hoping there was a kiosk mode that would fall back to an application shortcut when exiting fullscreen. A tall order I suppose.
– rom
Oct 15 '13 at 9:17
Confirmed to work on my installation of Raspbian (Raspberry pi 2) with chromium (Full version string: "Version 22.0.1229.94 Built on Debian 7.0, running on Debian 7.8 (161065)")
– rinogo
Feb 4 '16 at 21:16
add a comment |
How to use Chrome browser in kiosk-mode
Use it like this:
google-chrome --kiosk http://example.com
chromium-browser --kiosk http://example.com
tested with Ubuntu 12.04, google-chrome-stable 30.0.1599.66-1 and chromium-browser 28.0.1500.71-0ubuntu1.12.04. But only if there is no other instance of the browser running.
So close all browser windows and then use it with the option and it should definitely work as expected.
Other things I've learned
Checking --help or man google-chrome didn't help because:
Chromium has hundreds of undocumented command-line flags that are added
and removed at the whim of the developers. Here, we document rela‐
tively stable flags.
So --kiosk is an option that is deliberately un-document, because it might disappear at a whim... which it didn't since over 2 years. But, well you have been warned.
Nice one, works fine on 13.04 (though I am running legacy fullscreen support). I take it my issue was that I already had a chrome instance running. Was hoping there was a kiosk mode that would fall back to an application shortcut when exiting fullscreen. A tall order I suppose.
– rom
Oct 15 '13 at 9:17
Confirmed to work on my installation of Raspbian (Raspberry pi 2) with chromium (Full version string: "Version 22.0.1229.94 Built on Debian 7.0, running on Debian 7.8 (161065)")
– rinogo
Feb 4 '16 at 21:16
add a comment |
How to use Chrome browser in kiosk-mode
Use it like this:
google-chrome --kiosk http://example.com
chromium-browser --kiosk http://example.com
tested with Ubuntu 12.04, google-chrome-stable 30.0.1599.66-1 and chromium-browser 28.0.1500.71-0ubuntu1.12.04. But only if there is no other instance of the browser running.
So close all browser windows and then use it with the option and it should definitely work as expected.
Other things I've learned
Checking --help or man google-chrome didn't help because:
Chromium has hundreds of undocumented command-line flags that are added
and removed at the whim of the developers. Here, we document rela‐
tively stable flags.
So --kiosk is an option that is deliberately un-document, because it might disappear at a whim... which it didn't since over 2 years. But, well you have been warned.
How to use Chrome browser in kiosk-mode
Use it like this:
google-chrome --kiosk http://example.com
chromium-browser --kiosk http://example.com
tested with Ubuntu 12.04, google-chrome-stable 30.0.1599.66-1 and chromium-browser 28.0.1500.71-0ubuntu1.12.04. But only if there is no other instance of the browser running.
So close all browser windows and then use it with the option and it should definitely work as expected.
Other things I've learned
Checking --help or man google-chrome didn't help because:
Chromium has hundreds of undocumented command-line flags that are added
and removed at the whim of the developers. Here, we document rela‐
tively stable flags.
So --kiosk is an option that is deliberately un-document, because it might disappear at a whim... which it didn't since over 2 years. But, well you have been warned.
edited Jan 13 '18 at 5:42
answered Oct 14 '13 at 22:39
MadMikeMadMike
3,80172244
3,80172244
Nice one, works fine on 13.04 (though I am running legacy fullscreen support). I take it my issue was that I already had a chrome instance running. Was hoping there was a kiosk mode that would fall back to an application shortcut when exiting fullscreen. A tall order I suppose.
– rom
Oct 15 '13 at 9:17
Confirmed to work on my installation of Raspbian (Raspberry pi 2) with chromium (Full version string: "Version 22.0.1229.94 Built on Debian 7.0, running on Debian 7.8 (161065)")
– rinogo
Feb 4 '16 at 21:16
add a comment |
Nice one, works fine on 13.04 (though I am running legacy fullscreen support). I take it my issue was that I already had a chrome instance running. Was hoping there was a kiosk mode that would fall back to an application shortcut when exiting fullscreen. A tall order I suppose.
– rom
Oct 15 '13 at 9:17
Confirmed to work on my installation of Raspbian (Raspberry pi 2) with chromium (Full version string: "Version 22.0.1229.94 Built on Debian 7.0, running on Debian 7.8 (161065)")
– rinogo
Feb 4 '16 at 21:16
Nice one, works fine on 13.04 (though I am running legacy fullscreen support). I take it my issue was that I already had a chrome instance running. Was hoping there was a kiosk mode that would fall back to an application shortcut when exiting fullscreen. A tall order I suppose.
– rom
Oct 15 '13 at 9:17
Nice one, works fine on 13.04 (though I am running legacy fullscreen support). I take it my issue was that I already had a chrome instance running. Was hoping there was a kiosk mode that would fall back to an application shortcut when exiting fullscreen. A tall order I suppose.
– rom
Oct 15 '13 at 9:17
Confirmed to work on my installation of Raspbian (Raspberry pi 2) with chromium (Full version string: "Version 22.0.1229.94 Built on Debian 7.0, running on Debian 7.8 (161065)")
– rinogo
Feb 4 '16 at 21:16
Confirmed to work on my installation of Raspbian (Raspberry pi 2) with chromium (Full version string: "Version 22.0.1229.94 Built on Debian 7.0, running on Debian 7.8 (161065)")
– rinogo
Feb 4 '16 at 21:16
add a comment |
Peter Beverloo has comprised a list of command line options at http://peter.sh/experiments/chromium-command-line-switches/
add a comment |
Peter Beverloo has comprised a list of command line options at http://peter.sh/experiments/chromium-command-line-switches/
add a comment |
Peter Beverloo has comprised a list of command line options at http://peter.sh/experiments/chromium-command-line-switches/
Peter Beverloo has comprised a list of command line options at http://peter.sh/experiments/chromium-command-line-switches/
answered Feb 20 '14 at 12:31
MaddinMaddin
27644
27644
add a comment |
add a comment |
In my case only --kiosk didn't help that much because I wanted to run in app mode (--app=URL) -- which disables some distractions like navbar or bookmarks.
I've found from Peter Beverloo's link in other answer this --start-fullscreen flag. So OP would probably go with something like
TLDR
$ google-chrome --start-fullscreen --app=http://website.com
New contributor
Matheus Santana is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
In my case only --kiosk didn't help that much because I wanted to run in app mode (--app=URL) -- which disables some distractions like navbar or bookmarks.
I've found from Peter Beverloo's link in other answer this --start-fullscreen flag. So OP would probably go with something like
TLDR
$ google-chrome --start-fullscreen --app=http://website.com
New contributor
Matheus Santana is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
In my case only --kiosk didn't help that much because I wanted to run in app mode (--app=URL) -- which disables some distractions like navbar or bookmarks.
I've found from Peter Beverloo's link in other answer this --start-fullscreen flag. So OP would probably go with something like
TLDR
$ google-chrome --start-fullscreen --app=http://website.com
New contributor
Matheus Santana is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
In my case only --kiosk didn't help that much because I wanted to run in app mode (--app=URL) -- which disables some distractions like navbar or bookmarks.
I've found from Peter Beverloo's link in other answer this --start-fullscreen flag. So OP would probably go with something like
TLDR
$ google-chrome --start-fullscreen --app=http://website.com
New contributor
Matheus Santana is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Matheus Santana is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
answered 9 hours ago
Matheus SantanaMatheus Santana
1013
1013
New contributor
Matheus Santana is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Matheus Santana is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Matheus Santana is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
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%2f358898%2fhow-to-launch-google-chrome-chromium-application-shortcut-in-fullscreen-kiosk-mo%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
Have you tried
google-chrome --help?– MadMike
Oct 14 '13 at 14:17
yes, its the same command as 'man google-chrome'
– rom
Oct 14 '13 at 17:03
I guess it's a matter of the version in use because
google-chrome --start-maximized --app=http://website.comworks for me.– Matheus Santana
9 hours ago