What is the command to close a window?

Clash Royale CLAN TAG#URR8PPP
I want to set a keyboard shortcut to close the current window in Ubuntu 16.04. I am aware that alt+f4 already does this and that I can redefine this shortcut if I want to, but what I really want is to add an additional shortcut to perform the same function.
The reason being; I have a keyboard without designated function keys (a 60%). Instead the function keys are activated via a keyboard shortcut that toggles the row of number keys between number and function keys (for example 4 to f4 and vice versa).
I am deep in the habit of quickly closing windows using alt+f4 and want it to work regardless of whether I am in function key or number key mode, but can't seem to find what I should enter in the command field when setting a new keyboard shortcut.
I have found a good workaround to my particular problem and posted it in the answers below. Still open to more elegant solutions.
Edit: To clarify, the machine is running X11.
keyboard shortcut-keys xorg
add a comment |
I want to set a keyboard shortcut to close the current window in Ubuntu 16.04. I am aware that alt+f4 already does this and that I can redefine this shortcut if I want to, but what I really want is to add an additional shortcut to perform the same function.
The reason being; I have a keyboard without designated function keys (a 60%). Instead the function keys are activated via a keyboard shortcut that toggles the row of number keys between number and function keys (for example 4 to f4 and vice versa).
I am deep in the habit of quickly closing windows using alt+f4 and want it to work regardless of whether I am in function key or number key mode, but can't seem to find what I should enter in the command field when setting a new keyboard shortcut.
I have found a good workaround to my particular problem and posted it in the answers below. Still open to more elegant solutions.
Edit: To clarify, the machine is running X11.
keyboard shortcut-keys xorg
1
Possible duplicate of How to close application from terminal same way as exiting it properly
– karel
Feb 26 at 12:39
add a comment |
I want to set a keyboard shortcut to close the current window in Ubuntu 16.04. I am aware that alt+f4 already does this and that I can redefine this shortcut if I want to, but what I really want is to add an additional shortcut to perform the same function.
The reason being; I have a keyboard without designated function keys (a 60%). Instead the function keys are activated via a keyboard shortcut that toggles the row of number keys between number and function keys (for example 4 to f4 and vice versa).
I am deep in the habit of quickly closing windows using alt+f4 and want it to work regardless of whether I am in function key or number key mode, but can't seem to find what I should enter in the command field when setting a new keyboard shortcut.
I have found a good workaround to my particular problem and posted it in the answers below. Still open to more elegant solutions.
Edit: To clarify, the machine is running X11.
keyboard shortcut-keys xorg
I want to set a keyboard shortcut to close the current window in Ubuntu 16.04. I am aware that alt+f4 already does this and that I can redefine this shortcut if I want to, but what I really want is to add an additional shortcut to perform the same function.
The reason being; I have a keyboard without designated function keys (a 60%). Instead the function keys are activated via a keyboard shortcut that toggles the row of number keys between number and function keys (for example 4 to f4 and vice versa).
I am deep in the habit of quickly closing windows using alt+f4 and want it to work regardless of whether I am in function key or number key mode, but can't seem to find what I should enter in the command field when setting a new keyboard shortcut.
I have found a good workaround to my particular problem and posted it in the answers below. Still open to more elegant solutions.
Edit: To clarify, the machine is running X11.
keyboard shortcut-keys xorg
keyboard shortcut-keys xorg
edited Feb 11 at 14:10
FinleyGibson
asked Feb 11 at 12:32
FinleyGibsonFinleyGibson
416
416
1
Possible duplicate of How to close application from terminal same way as exiting it properly
– karel
Feb 26 at 12:39
add a comment |
1
Possible duplicate of How to close application from terminal same way as exiting it properly
– karel
Feb 26 at 12:39
1
1
Possible duplicate of How to close application from terminal same way as exiting it properly
– karel
Feb 26 at 12:39
Possible duplicate of How to close application from terminal same way as exiting it properly
– karel
Feb 26 at 12:39
add a comment |
4 Answers
4
active
oldest
votes
wmctrl -c <win>
wmctrl - interact with a EWMH/NetWM compatible X Window Manager.
-c <WIN>
Close the window <WIN> gracefully.
(from man wmctrl. But note: I use XFCE so haven't tested this on Unity as found in default Ubuntu 16.04, and I wouldn't expect it to work if using Wayland on 17.10 upwards)
I am using X11, and having installed wmctrl, and applied your suggestion, it does work sort of. But The command does more than close the active window. Enteringwmctrl -c WINin terminal does close the current window, but it also seems to perform some kind of refresh of X11: the screen blinks and all open windows are moved to workspace 1. Is there something I am doing wrong here? Or is there another way to specify the exact functionality ofalt+f4?
– FinleyGibson
Feb 11 at 13:03
the <win> should be replaced by the window you want to close. I've only used it in shell scripts, and have known what workspaces (i usually use it to effect workspaces more than windows) I want to add/delete/switch-to. It takes some play to get to understand it, and I'd have your shortcut run a shell.script that closed the window (not sure how you'd work out current window, it's a case I never considered in usingwmctrlas its not how I use it as the windows I've closed are ones I've opened with my scripts)
– guiverc
Feb 11 at 13:07
For example, I have a folder with photos open (inthunaras I'm using XFCE currently), and select one to view so open it. It opens ingpicview(my preferred viewer for that type of file). To close the window I can ctrl+alt+T to open a terminal and enter the commandwmctrl -c P1000403.JPG(the P1000403.JPG being the name of the picture I was viewing in this example). On pressing enter thegpicviewwindow containing my photo closes. <win> was replaced by the 'title' of my 'window' in this example. The '<>' characters were copied from themanpage representing values you change.
– guiverc
Feb 11 at 13:27
I see what you are saying. In order to implement what I want in this way, I would then need a means of getting the name of the currently active window. But I can't seem to find a way.
– FinleyGibson
Feb 11 at 13:39
It's after midnight my local time, what you've got is the best I can provide from my tired-brain given I want to go to bed (and don't want to find my scripts to look for clues). the moment I've found the photo I want, it's being posted & I'm off to bed
– guiverc
Feb 11 at 13:47
|
show 1 more comment
Had you try to use CTRL+Q
I was use to press these keys to close windows, never added a keyboard shortcut, seems to be the default at least in the distros I used(always debian based)
but I see the point of your question
Nice Idea, butctrl +Qdoes nothing for me.
– FinleyGibson
Feb 11 at 13:21
add a comment |
the other work around i found along with @FinleyGibson answer is
open dconf-editor (if dconf-editor is not installed, install with below commandsudo apt install dconf-editor)
search key word "close"

then edit the custom value to ['<Alt>F4', '<Alt>4']

That looks like a good workaround. Not going accept it as the answer since there could still be a way to get the original command, but it does look like a tidy solution and I will use it in the future.
– FinleyGibson
Feb 12 at 16:23
add a comment |
I found a good solution to my problem, though it does not exactly answer the question I originally asked, I'm posting it here as a workaround for anyone that encounters a similar issue.
The solution I found was to use xdotool to execute the alt+f4 shortcut as a command, and to set this as the command for alt+4. To do this first isntall xdotool if you don't have it already:
sudo apt-get install xdotool
Then go to keyboard shortcuts in the settings menu, and add a custom shortcut. In the command field enter:
xdotool key Alt+F4
And set the shortcut to Alt+4.
This works well, but I'm leaving the question as is, in case someone has a more elegant solution, using the exact command called by the close window shortcut by default.
1
Did you tryxkill? I'd say it is more advanced for me and kills just about anything :D you can launch it either from terminal or creating a shortcut.
– JoKeR
Feb 12 at 13:30
2
I did look into that. The problem withxkillis that it kills the whole process tree. So if you have 2 terminal windows open, both will be closed. This is not the functionality ofalt+F4and is not quite what I was looking for.
– FinleyGibson
Feb 12 at 16:20
xdotoolis a good solution for this issue. If you ever need to do something a bit more involved, take a look atAutoKey. It allows you to setup hotkeys and trigger phrases which can do anything from a simple text insertion to running an arbitrarily complex Python script which can use the keyboard and mouse for you to perform multiple actions.
– Joe
Feb 14 at 18:34
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%2f1117353%2fwhat-is-the-command-to-close-a-window%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
wmctrl -c <win>
wmctrl - interact with a EWMH/NetWM compatible X Window Manager.
-c <WIN>
Close the window <WIN> gracefully.
(from man wmctrl. But note: I use XFCE so haven't tested this on Unity as found in default Ubuntu 16.04, and I wouldn't expect it to work if using Wayland on 17.10 upwards)
I am using X11, and having installed wmctrl, and applied your suggestion, it does work sort of. But The command does more than close the active window. Enteringwmctrl -c WINin terminal does close the current window, but it also seems to perform some kind of refresh of X11: the screen blinks and all open windows are moved to workspace 1. Is there something I am doing wrong here? Or is there another way to specify the exact functionality ofalt+f4?
– FinleyGibson
Feb 11 at 13:03
the <win> should be replaced by the window you want to close. I've only used it in shell scripts, and have known what workspaces (i usually use it to effect workspaces more than windows) I want to add/delete/switch-to. It takes some play to get to understand it, and I'd have your shortcut run a shell.script that closed the window (not sure how you'd work out current window, it's a case I never considered in usingwmctrlas its not how I use it as the windows I've closed are ones I've opened with my scripts)
– guiverc
Feb 11 at 13:07
For example, I have a folder with photos open (inthunaras I'm using XFCE currently), and select one to view so open it. It opens ingpicview(my preferred viewer for that type of file). To close the window I can ctrl+alt+T to open a terminal and enter the commandwmctrl -c P1000403.JPG(the P1000403.JPG being the name of the picture I was viewing in this example). On pressing enter thegpicviewwindow containing my photo closes. <win> was replaced by the 'title' of my 'window' in this example. The '<>' characters were copied from themanpage representing values you change.
– guiverc
Feb 11 at 13:27
I see what you are saying. In order to implement what I want in this way, I would then need a means of getting the name of the currently active window. But I can't seem to find a way.
– FinleyGibson
Feb 11 at 13:39
It's after midnight my local time, what you've got is the best I can provide from my tired-brain given I want to go to bed (and don't want to find my scripts to look for clues). the moment I've found the photo I want, it's being posted & I'm off to bed
– guiverc
Feb 11 at 13:47
|
show 1 more comment
wmctrl -c <win>
wmctrl - interact with a EWMH/NetWM compatible X Window Manager.
-c <WIN>
Close the window <WIN> gracefully.
(from man wmctrl. But note: I use XFCE so haven't tested this on Unity as found in default Ubuntu 16.04, and I wouldn't expect it to work if using Wayland on 17.10 upwards)
I am using X11, and having installed wmctrl, and applied your suggestion, it does work sort of. But The command does more than close the active window. Enteringwmctrl -c WINin terminal does close the current window, but it also seems to perform some kind of refresh of X11: the screen blinks and all open windows are moved to workspace 1. Is there something I am doing wrong here? Or is there another way to specify the exact functionality ofalt+f4?
– FinleyGibson
Feb 11 at 13:03
the <win> should be replaced by the window you want to close. I've only used it in shell scripts, and have known what workspaces (i usually use it to effect workspaces more than windows) I want to add/delete/switch-to. It takes some play to get to understand it, and I'd have your shortcut run a shell.script that closed the window (not sure how you'd work out current window, it's a case I never considered in usingwmctrlas its not how I use it as the windows I've closed are ones I've opened with my scripts)
– guiverc
Feb 11 at 13:07
For example, I have a folder with photos open (inthunaras I'm using XFCE currently), and select one to view so open it. It opens ingpicview(my preferred viewer for that type of file). To close the window I can ctrl+alt+T to open a terminal and enter the commandwmctrl -c P1000403.JPG(the P1000403.JPG being the name of the picture I was viewing in this example). On pressing enter thegpicviewwindow containing my photo closes. <win> was replaced by the 'title' of my 'window' in this example. The '<>' characters were copied from themanpage representing values you change.
– guiverc
Feb 11 at 13:27
I see what you are saying. In order to implement what I want in this way, I would then need a means of getting the name of the currently active window. But I can't seem to find a way.
– FinleyGibson
Feb 11 at 13:39
It's after midnight my local time, what you've got is the best I can provide from my tired-brain given I want to go to bed (and don't want to find my scripts to look for clues). the moment I've found the photo I want, it's being posted & I'm off to bed
– guiverc
Feb 11 at 13:47
|
show 1 more comment
wmctrl -c <win>
wmctrl - interact with a EWMH/NetWM compatible X Window Manager.
-c <WIN>
Close the window <WIN> gracefully.
(from man wmctrl. But note: I use XFCE so haven't tested this on Unity as found in default Ubuntu 16.04, and I wouldn't expect it to work if using Wayland on 17.10 upwards)
wmctrl -c <win>
wmctrl - interact with a EWMH/NetWM compatible X Window Manager.
-c <WIN>
Close the window <WIN> gracefully.
(from man wmctrl. But note: I use XFCE so haven't tested this on Unity as found in default Ubuntu 16.04, and I wouldn't expect it to work if using Wayland on 17.10 upwards)
answered Feb 11 at 12:42
guivercguiverc
4,84621623
4,84621623
I am using X11, and having installed wmctrl, and applied your suggestion, it does work sort of. But The command does more than close the active window. Enteringwmctrl -c WINin terminal does close the current window, but it also seems to perform some kind of refresh of X11: the screen blinks and all open windows are moved to workspace 1. Is there something I am doing wrong here? Or is there another way to specify the exact functionality ofalt+f4?
– FinleyGibson
Feb 11 at 13:03
the <win> should be replaced by the window you want to close. I've only used it in shell scripts, and have known what workspaces (i usually use it to effect workspaces more than windows) I want to add/delete/switch-to. It takes some play to get to understand it, and I'd have your shortcut run a shell.script that closed the window (not sure how you'd work out current window, it's a case I never considered in usingwmctrlas its not how I use it as the windows I've closed are ones I've opened with my scripts)
– guiverc
Feb 11 at 13:07
For example, I have a folder with photos open (inthunaras I'm using XFCE currently), and select one to view so open it. It opens ingpicview(my preferred viewer for that type of file). To close the window I can ctrl+alt+T to open a terminal and enter the commandwmctrl -c P1000403.JPG(the P1000403.JPG being the name of the picture I was viewing in this example). On pressing enter thegpicviewwindow containing my photo closes. <win> was replaced by the 'title' of my 'window' in this example. The '<>' characters were copied from themanpage representing values you change.
– guiverc
Feb 11 at 13:27
I see what you are saying. In order to implement what I want in this way, I would then need a means of getting the name of the currently active window. But I can't seem to find a way.
– FinleyGibson
Feb 11 at 13:39
It's after midnight my local time, what you've got is the best I can provide from my tired-brain given I want to go to bed (and don't want to find my scripts to look for clues). the moment I've found the photo I want, it's being posted & I'm off to bed
– guiverc
Feb 11 at 13:47
|
show 1 more comment
I am using X11, and having installed wmctrl, and applied your suggestion, it does work sort of. But The command does more than close the active window. Enteringwmctrl -c WINin terminal does close the current window, but it also seems to perform some kind of refresh of X11: the screen blinks and all open windows are moved to workspace 1. Is there something I am doing wrong here? Or is there another way to specify the exact functionality ofalt+f4?
– FinleyGibson
Feb 11 at 13:03
the <win> should be replaced by the window you want to close. I've only used it in shell scripts, and have known what workspaces (i usually use it to effect workspaces more than windows) I want to add/delete/switch-to. It takes some play to get to understand it, and I'd have your shortcut run a shell.script that closed the window (not sure how you'd work out current window, it's a case I never considered in usingwmctrlas its not how I use it as the windows I've closed are ones I've opened with my scripts)
– guiverc
Feb 11 at 13:07
For example, I have a folder with photos open (inthunaras I'm using XFCE currently), and select one to view so open it. It opens ingpicview(my preferred viewer for that type of file). To close the window I can ctrl+alt+T to open a terminal and enter the commandwmctrl -c P1000403.JPG(the P1000403.JPG being the name of the picture I was viewing in this example). On pressing enter thegpicviewwindow containing my photo closes. <win> was replaced by the 'title' of my 'window' in this example. The '<>' characters were copied from themanpage representing values you change.
– guiverc
Feb 11 at 13:27
I see what you are saying. In order to implement what I want in this way, I would then need a means of getting the name of the currently active window. But I can't seem to find a way.
– FinleyGibson
Feb 11 at 13:39
It's after midnight my local time, what you've got is the best I can provide from my tired-brain given I want to go to bed (and don't want to find my scripts to look for clues). the moment I've found the photo I want, it's being posted & I'm off to bed
– guiverc
Feb 11 at 13:47
I am using X11, and having installed wmctrl, and applied your suggestion, it does work sort of. But The command does more than close the active window. Entering
wmctrl -c WIN in terminal does close the current window, but it also seems to perform some kind of refresh of X11: the screen blinks and all open windows are moved to workspace 1. Is there something I am doing wrong here? Or is there another way to specify the exact functionality of alt+f4?– FinleyGibson
Feb 11 at 13:03
I am using X11, and having installed wmctrl, and applied your suggestion, it does work sort of. But The command does more than close the active window. Entering
wmctrl -c WIN in terminal does close the current window, but it also seems to perform some kind of refresh of X11: the screen blinks and all open windows are moved to workspace 1. Is there something I am doing wrong here? Or is there another way to specify the exact functionality of alt+f4?– FinleyGibson
Feb 11 at 13:03
the <win> should be replaced by the window you want to close. I've only used it in shell scripts, and have known what workspaces (i usually use it to effect workspaces more than windows) I want to add/delete/switch-to. It takes some play to get to understand it, and I'd have your shortcut run a shell.script that closed the window (not sure how you'd work out current window, it's a case I never considered in using
wmctrl as its not how I use it as the windows I've closed are ones I've opened with my scripts)– guiverc
Feb 11 at 13:07
the <win> should be replaced by the window you want to close. I've only used it in shell scripts, and have known what workspaces (i usually use it to effect workspaces more than windows) I want to add/delete/switch-to. It takes some play to get to understand it, and I'd have your shortcut run a shell.script that closed the window (not sure how you'd work out current window, it's a case I never considered in using
wmctrl as its not how I use it as the windows I've closed are ones I've opened with my scripts)– guiverc
Feb 11 at 13:07
For example, I have a folder with photos open (in
thunar as I'm using XFCE currently), and select one to view so open it. It opens in gpicview (my preferred viewer for that type of file). To close the window I can ctrl+alt+T to open a terminal and enter the command wmctrl -c P1000403.JPG (the P1000403.JPG being the name of the picture I was viewing in this example). On pressing enter the gpicview window containing my photo closes. <win> was replaced by the 'title' of my 'window' in this example. The '<>' characters were copied from the man page representing values you change.– guiverc
Feb 11 at 13:27
For example, I have a folder with photos open (in
thunar as I'm using XFCE currently), and select one to view so open it. It opens in gpicview (my preferred viewer for that type of file). To close the window I can ctrl+alt+T to open a terminal and enter the command wmctrl -c P1000403.JPG (the P1000403.JPG being the name of the picture I was viewing in this example). On pressing enter the gpicview window containing my photo closes. <win> was replaced by the 'title' of my 'window' in this example. The '<>' characters were copied from the man page representing values you change.– guiverc
Feb 11 at 13:27
I see what you are saying. In order to implement what I want in this way, I would then need a means of getting the name of the currently active window. But I can't seem to find a way.
– FinleyGibson
Feb 11 at 13:39
I see what you are saying. In order to implement what I want in this way, I would then need a means of getting the name of the currently active window. But I can't seem to find a way.
– FinleyGibson
Feb 11 at 13:39
It's after midnight my local time, what you've got is the best I can provide from my tired-brain given I want to go to bed (and don't want to find my scripts to look for clues). the moment I've found the photo I want, it's being posted & I'm off to bed
– guiverc
Feb 11 at 13:47
It's after midnight my local time, what you've got is the best I can provide from my tired-brain given I want to go to bed (and don't want to find my scripts to look for clues). the moment I've found the photo I want, it's being posted & I'm off to bed
– guiverc
Feb 11 at 13:47
|
show 1 more comment
Had you try to use CTRL+Q
I was use to press these keys to close windows, never added a keyboard shortcut, seems to be the default at least in the distros I used(always debian based)
but I see the point of your question
Nice Idea, butctrl +Qdoes nothing for me.
– FinleyGibson
Feb 11 at 13:21
add a comment |
Had you try to use CTRL+Q
I was use to press these keys to close windows, never added a keyboard shortcut, seems to be the default at least in the distros I used(always debian based)
but I see the point of your question
Nice Idea, butctrl +Qdoes nothing for me.
– FinleyGibson
Feb 11 at 13:21
add a comment |
Had you try to use CTRL+Q
I was use to press these keys to close windows, never added a keyboard shortcut, seems to be the default at least in the distros I used(always debian based)
but I see the point of your question
Had you try to use CTRL+Q
I was use to press these keys to close windows, never added a keyboard shortcut, seems to be the default at least in the distros I used(always debian based)
but I see the point of your question
answered Feb 11 at 13:05
leselese
1,755158
1,755158
Nice Idea, butctrl +Qdoes nothing for me.
– FinleyGibson
Feb 11 at 13:21
add a comment |
Nice Idea, butctrl +Qdoes nothing for me.
– FinleyGibson
Feb 11 at 13:21
Nice Idea, but
ctrl +Q does nothing for me.– FinleyGibson
Feb 11 at 13:21
Nice Idea, but
ctrl +Q does nothing for me.– FinleyGibson
Feb 11 at 13:21
add a comment |
the other work around i found along with @FinleyGibson answer is
open dconf-editor (if dconf-editor is not installed, install with below commandsudo apt install dconf-editor)
search key word "close"

then edit the custom value to ['<Alt>F4', '<Alt>4']

That looks like a good workaround. Not going accept it as the answer since there could still be a way to get the original command, but it does look like a tidy solution and I will use it in the future.
– FinleyGibson
Feb 12 at 16:23
add a comment |
the other work around i found along with @FinleyGibson answer is
open dconf-editor (if dconf-editor is not installed, install with below commandsudo apt install dconf-editor)
search key word "close"

then edit the custom value to ['<Alt>F4', '<Alt>4']

That looks like a good workaround. Not going accept it as the answer since there could still be a way to get the original command, but it does look like a tidy solution and I will use it in the future.
– FinleyGibson
Feb 12 at 16:23
add a comment |
the other work around i found along with @FinleyGibson answer is
open dconf-editor (if dconf-editor is not installed, install with below commandsudo apt install dconf-editor)
search key word "close"

then edit the custom value to ['<Alt>F4', '<Alt>4']

the other work around i found along with @FinleyGibson answer is
open dconf-editor (if dconf-editor is not installed, install with below commandsudo apt install dconf-editor)
search key word "close"

then edit the custom value to ['<Alt>F4', '<Alt>4']

answered Feb 12 at 12:52
PRATAPPRATAP
2,9432828
2,9432828
That looks like a good workaround. Not going accept it as the answer since there could still be a way to get the original command, but it does look like a tidy solution and I will use it in the future.
– FinleyGibson
Feb 12 at 16:23
add a comment |
That looks like a good workaround. Not going accept it as the answer since there could still be a way to get the original command, but it does look like a tidy solution and I will use it in the future.
– FinleyGibson
Feb 12 at 16:23
That looks like a good workaround. Not going accept it as the answer since there could still be a way to get the original command, but it does look like a tidy solution and I will use it in the future.
– FinleyGibson
Feb 12 at 16:23
That looks like a good workaround. Not going accept it as the answer since there could still be a way to get the original command, but it does look like a tidy solution and I will use it in the future.
– FinleyGibson
Feb 12 at 16:23
add a comment |
I found a good solution to my problem, though it does not exactly answer the question I originally asked, I'm posting it here as a workaround for anyone that encounters a similar issue.
The solution I found was to use xdotool to execute the alt+f4 shortcut as a command, and to set this as the command for alt+4. To do this first isntall xdotool if you don't have it already:
sudo apt-get install xdotool
Then go to keyboard shortcuts in the settings menu, and add a custom shortcut. In the command field enter:
xdotool key Alt+F4
And set the shortcut to Alt+4.
This works well, but I'm leaving the question as is, in case someone has a more elegant solution, using the exact command called by the close window shortcut by default.
1
Did you tryxkill? I'd say it is more advanced for me and kills just about anything :D you can launch it either from terminal or creating a shortcut.
– JoKeR
Feb 12 at 13:30
2
I did look into that. The problem withxkillis that it kills the whole process tree. So if you have 2 terminal windows open, both will be closed. This is not the functionality ofalt+F4and is not quite what I was looking for.
– FinleyGibson
Feb 12 at 16:20
xdotoolis a good solution for this issue. If you ever need to do something a bit more involved, take a look atAutoKey. It allows you to setup hotkeys and trigger phrases which can do anything from a simple text insertion to running an arbitrarily complex Python script which can use the keyboard and mouse for you to perform multiple actions.
– Joe
Feb 14 at 18:34
add a comment |
I found a good solution to my problem, though it does not exactly answer the question I originally asked, I'm posting it here as a workaround for anyone that encounters a similar issue.
The solution I found was to use xdotool to execute the alt+f4 shortcut as a command, and to set this as the command for alt+4. To do this first isntall xdotool if you don't have it already:
sudo apt-get install xdotool
Then go to keyboard shortcuts in the settings menu, and add a custom shortcut. In the command field enter:
xdotool key Alt+F4
And set the shortcut to Alt+4.
This works well, but I'm leaving the question as is, in case someone has a more elegant solution, using the exact command called by the close window shortcut by default.
1
Did you tryxkill? I'd say it is more advanced for me and kills just about anything :D you can launch it either from terminal or creating a shortcut.
– JoKeR
Feb 12 at 13:30
2
I did look into that. The problem withxkillis that it kills the whole process tree. So if you have 2 terminal windows open, both will be closed. This is not the functionality ofalt+F4and is not quite what I was looking for.
– FinleyGibson
Feb 12 at 16:20
xdotoolis a good solution for this issue. If you ever need to do something a bit more involved, take a look atAutoKey. It allows you to setup hotkeys and trigger phrases which can do anything from a simple text insertion to running an arbitrarily complex Python script which can use the keyboard and mouse for you to perform multiple actions.
– Joe
Feb 14 at 18:34
add a comment |
I found a good solution to my problem, though it does not exactly answer the question I originally asked, I'm posting it here as a workaround for anyone that encounters a similar issue.
The solution I found was to use xdotool to execute the alt+f4 shortcut as a command, and to set this as the command for alt+4. To do this first isntall xdotool if you don't have it already:
sudo apt-get install xdotool
Then go to keyboard shortcuts in the settings menu, and add a custom shortcut. In the command field enter:
xdotool key Alt+F4
And set the shortcut to Alt+4.
This works well, but I'm leaving the question as is, in case someone has a more elegant solution, using the exact command called by the close window shortcut by default.
I found a good solution to my problem, though it does not exactly answer the question I originally asked, I'm posting it here as a workaround for anyone that encounters a similar issue.
The solution I found was to use xdotool to execute the alt+f4 shortcut as a command, and to set this as the command for alt+4. To do this first isntall xdotool if you don't have it already:
sudo apt-get install xdotool
Then go to keyboard shortcuts in the settings menu, and add a custom shortcut. In the command field enter:
xdotool key Alt+F4
And set the shortcut to Alt+4.
This works well, but I'm leaving the question as is, in case someone has a more elegant solution, using the exact command called by the close window shortcut by default.
edited Feb 11 at 18:03
answered Feb 11 at 13:50
FinleyGibsonFinleyGibson
416
416
1
Did you tryxkill? I'd say it is more advanced for me and kills just about anything :D you can launch it either from terminal or creating a shortcut.
– JoKeR
Feb 12 at 13:30
2
I did look into that. The problem withxkillis that it kills the whole process tree. So if you have 2 terminal windows open, both will be closed. This is not the functionality ofalt+F4and is not quite what I was looking for.
– FinleyGibson
Feb 12 at 16:20
xdotoolis a good solution for this issue. If you ever need to do something a bit more involved, take a look atAutoKey. It allows you to setup hotkeys and trigger phrases which can do anything from a simple text insertion to running an arbitrarily complex Python script which can use the keyboard and mouse for you to perform multiple actions.
– Joe
Feb 14 at 18:34
add a comment |
1
Did you tryxkill? I'd say it is more advanced for me and kills just about anything :D you can launch it either from terminal or creating a shortcut.
– JoKeR
Feb 12 at 13:30
2
I did look into that. The problem withxkillis that it kills the whole process tree. So if you have 2 terminal windows open, both will be closed. This is not the functionality ofalt+F4and is not quite what I was looking for.
– FinleyGibson
Feb 12 at 16:20
xdotoolis a good solution for this issue. If you ever need to do something a bit more involved, take a look atAutoKey. It allows you to setup hotkeys and trigger phrases which can do anything from a simple text insertion to running an arbitrarily complex Python script which can use the keyboard and mouse for you to perform multiple actions.
– Joe
Feb 14 at 18:34
1
1
Did you try
xkill ? I'd say it is more advanced for me and kills just about anything :D you can launch it either from terminal or creating a shortcut.– JoKeR
Feb 12 at 13:30
Did you try
xkill ? I'd say it is more advanced for me and kills just about anything :D you can launch it either from terminal or creating a shortcut.– JoKeR
Feb 12 at 13:30
2
2
I did look into that. The problem with
xkill is that it kills the whole process tree. So if you have 2 terminal windows open, both will be closed. This is not the functionality of alt+F4 and is not quite what I was looking for.– FinleyGibson
Feb 12 at 16:20
I did look into that. The problem with
xkill is that it kills the whole process tree. So if you have 2 terminal windows open, both will be closed. This is not the functionality of alt+F4 and is not quite what I was looking for.– FinleyGibson
Feb 12 at 16:20
xdotool is a good solution for this issue. If you ever need to do something a bit more involved, take a look at AutoKey. It allows you to setup hotkeys and trigger phrases which can do anything from a simple text insertion to running an arbitrarily complex Python script which can use the keyboard and mouse for you to perform multiple actions.– Joe
Feb 14 at 18:34
xdotool is a good solution for this issue. If you ever need to do something a bit more involved, take a look at AutoKey. It allows you to setup hotkeys and trigger phrases which can do anything from a simple text insertion to running an arbitrarily complex Python script which can use the keyboard and mouse for you to perform multiple actions.– Joe
Feb 14 at 18:34
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%2f1117353%2fwhat-is-the-command-to-close-a-window%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
1
Possible duplicate of How to close application from terminal same way as exiting it properly
– karel
Feb 26 at 12:39