Full screen window command from Linux terminal?Reversed Terminal / Command line windowHow to create a new...
How to secure an aircraft at a transient parking space?
What problems would a superhuman have whose skin is constantly hot?
how to copy/paste a formula in Excel absolutely?
What are some noteworthy "mic-drop" moments in math?
What are actual Tesla M60 models used by AWS?
Is it necessary to separate DC power cables and data cables?
Word for a person who has no opinion about whether god exists
Should I take out a loan for a friend to invest on my behalf?
Intuition behind counterexample of Euler's sum of powers conjecture
Find longest word in a string: are any of these algorithms good?
Can I pump my MTB tire to max (55 psi / 380 kPa) without the tube inside bursting?
Difference on montgomery curve equation between EFD and RFC7748
What Happens when Passenger Refuses to Fly Boeing 737 Max?
Doesn't allowing a user mode program to access kernel space memory and execute the IN and OUT instructions defeat the purpose of having CPU modes?
What's the "normal" opposite of flautando?
Database Backup for data and log files
Is it possible to avoid unpacking when merging Association?
Motivation for Zeta Function of an Algebraic Variety
UART pins to unpowered MCU?
How can I get players to stop ignoring or overlooking the plot hooks I'm giving them?
When traveling to Europe from North America, do I need to purchase a different power strip?
Do items de-spawn in Diablo?
Examples of a statistic that is not independent of sample's distribution?
Are all players supposed to be able to see each others' character sheets?
Full screen window command from Linux terminal?
Reversed Terminal / Command line windowHow to create a new terminal window from the command line in Red Hat Linux 5.3Setting up a minimalist linux environmentLinux terminal single command resource usageTerminal window scrollback buffer using screen utilityGive mouse/keyboard/terminal/ctrl-c priority and stop programs from freezing my linux systemKali Linux terminal command troubleAutoHotkey - application loosing focus when enabling full screen modeHow to cancel a Ctrl-A in screenRun command after opening terminal window from script using bash
On Cinnamon, you can set a hotkey to force the active window into full screen mode; many programs have a full screen toggle built in. What I'm wondering is, what's the command that's being sent? How would you issue such a command in a terminal emulator to resize an application window so that it includes the space occupied by taskbars/panels?
linux command-line terminal window
bumped to the homepage by Community♦ 3 hours 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 |
On Cinnamon, you can set a hotkey to force the active window into full screen mode; many programs have a full screen toggle built in. What I'm wondering is, what's the command that's being sent? How would you issue such a command in a terminal emulator to resize an application window so that it includes the space occupied by taskbars/panels?
linux command-line terminal window
bumped to the homepage by Community♦ 3 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
3
It's setting the _NET_WM_STATE_FULLSCREEN atom on the window.
– Ignacio Vazquez-Abrams
Nov 5 '17 at 20:22
1
Have a look atwmctrl
.
– dirkt
Nov 6 '17 at 8:19
add a comment |
On Cinnamon, you can set a hotkey to force the active window into full screen mode; many programs have a full screen toggle built in. What I'm wondering is, what's the command that's being sent? How would you issue such a command in a terminal emulator to resize an application window so that it includes the space occupied by taskbars/panels?
linux command-line terminal window
On Cinnamon, you can set a hotkey to force the active window into full screen mode; many programs have a full screen toggle built in. What I'm wondering is, what's the command that's being sent? How would you issue such a command in a terminal emulator to resize an application window so that it includes the space occupied by taskbars/panels?
linux command-line terminal window
linux command-line terminal window
asked Nov 5 '17 at 20:21
Jon.D.Jon.D.
11
11
bumped to the homepage by Community♦ 3 hours 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♦ 3 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
3
It's setting the _NET_WM_STATE_FULLSCREEN atom on the window.
– Ignacio Vazquez-Abrams
Nov 5 '17 at 20:22
1
Have a look atwmctrl
.
– dirkt
Nov 6 '17 at 8:19
add a comment |
3
It's setting the _NET_WM_STATE_FULLSCREEN atom on the window.
– Ignacio Vazquez-Abrams
Nov 5 '17 at 20:22
1
Have a look atwmctrl
.
– dirkt
Nov 6 '17 at 8:19
3
3
It's setting the _NET_WM_STATE_FULLSCREEN atom on the window.
– Ignacio Vazquez-Abrams
Nov 5 '17 at 20:22
It's setting the _NET_WM_STATE_FULLSCREEN atom on the window.
– Ignacio Vazquez-Abrams
Nov 5 '17 at 20:22
1
1
Have a look at
wmctrl
.– dirkt
Nov 6 '17 at 8:19
Have a look at
wmctrl
.– dirkt
Nov 6 '17 at 8:19
add a comment |
1 Answer
1
active
oldest
votes
Based on @dirkt's comment I went and had a look at wmctrl
, which is a command line tool that let's you set these yourself. If you'd like to do things like toggle fullscreen for whatever programs you like from a shell script or any other custom place, this is ideal for that.
Here's an example that toggles fullscreen for the currently active window:
wmctrl -r ':ACTIVE:' -b toggle,fullscreen
For more details on what you can do with this see the man page and for some example see this tutorial.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
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%2fsuperuser.com%2fquestions%2f1265762%2ffull-screen-window-command-from-linux-terminal%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
Based on @dirkt's comment I went and had a look at wmctrl
, which is a command line tool that let's you set these yourself. If you'd like to do things like toggle fullscreen for whatever programs you like from a shell script or any other custom place, this is ideal for that.
Here's an example that toggles fullscreen for the currently active window:
wmctrl -r ':ACTIVE:' -b toggle,fullscreen
For more details on what you can do with this see the man page and for some example see this tutorial.
add a comment |
Based on @dirkt's comment I went and had a look at wmctrl
, which is a command line tool that let's you set these yourself. If you'd like to do things like toggle fullscreen for whatever programs you like from a shell script or any other custom place, this is ideal for that.
Here's an example that toggles fullscreen for the currently active window:
wmctrl -r ':ACTIVE:' -b toggle,fullscreen
For more details on what you can do with this see the man page and for some example see this tutorial.
add a comment |
Based on @dirkt's comment I went and had a look at wmctrl
, which is a command line tool that let's you set these yourself. If you'd like to do things like toggle fullscreen for whatever programs you like from a shell script or any other custom place, this is ideal for that.
Here's an example that toggles fullscreen for the currently active window:
wmctrl -r ':ACTIVE:' -b toggle,fullscreen
For more details on what you can do with this see the man page and for some example see this tutorial.
Based on @dirkt's comment I went and had a look at wmctrl
, which is a command line tool that let's you set these yourself. If you'd like to do things like toggle fullscreen for whatever programs you like from a shell script or any other custom place, this is ideal for that.
Here's an example that toggles fullscreen for the currently active window:
wmctrl -r ':ACTIVE:' -b toggle,fullscreen
For more details on what you can do with this see the man page and for some example see this tutorial.
answered May 4 '18 at 11:06
sinisterstufsinisterstuf
1304
1304
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- 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%2fsuperuser.com%2fquestions%2f1265762%2ffull-screen-window-command-from-linux-terminal%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
3
It's setting the _NET_WM_STATE_FULLSCREEN atom on the window.
– Ignacio Vazquez-Abrams
Nov 5 '17 at 20:22
1
Have a look at
wmctrl
.– dirkt
Nov 6 '17 at 8:19