17

I answered on Ask Ubuntu Quit all instances of gnome-terminal via a command but as you all can read gnome-terminal didn't seems to have a SIGcall I could use to simulate this "Close" event. So this lead me to ask, is there a way in GNOME/KDE/LXDE/{put your window/desktop manager/environment here} to simulate the "Click in close button" event? I have read different questions that could have any relation to this, but don't answer this.

What I'm looking is for a global command (if exist) to do this in different scenarios. If none exist, please explain how the "Close" button works.

Posible uses:

Braiam
  • 35,991

3 Answers3

20

I believe the related man page is, XKillClient. You can use xdotool to simulate the close button being clicked from a terminal like so.

Example

Assuming I have a gnome-terminal open and it's name is "saml@grinchy:/home".

  1. Get the window ID

    $ xdotool search --name "saml@grinchy:/home"
    96488188
    
  2. Send it a Alt+F4

    $ xdotool windowactivate --sync 96488188 key --clearmodifiers \
         --delay 100 alt+F4
    

You can put them together by embedding the first command into the second:

$ xdotool windowactivate --sync $( ...1st command...) key --clearmodifiers \
         --delay 100 alt+F4

You can save yourself by letting xdotool do both at the same time:

$ xdotool search --name "saml@grinchy:~" key alt+f4

Globally

You can adapt what I've provided to run it on windows that have the same name:

$ xdotool search --name "saml@grinchy:~"
96488779
96468996

Or on windows by other attributes. You can use xwininfo to find out more about a particular window. Run it and then just click on the window of interest:

$ xwininfo

xwininfo: Please select the window about which you
          would like information by clicking the
          mouse in that window.

xwininfo: Window id: 0x5c04d4b "saml@grinchy:~"

  Absolute upper-left X:  14
  Absolute upper-left Y:  74
  Relative upper-left X:  14
  Relative upper-left Y:  74
  Width: 941
  Height: 361
  Depth: 32
  Visual: 0x62
  Visual Class: TrueColor
  Border width: 0
  Class: InputOutput
  Colormap: 0x5c00003 (not installed)
  Bit Gravity State: NorthWestGravity
  Window Gravity State: NorthWestGravity
  Backing Store State: NotUseful
  Save Under State: no
  Map State: IsViewable
  Override Redirect State: no
  Corners:  +14+74  -485+74  -485-465  +14-465
  -geometry 132x24+14+74

Other useful tools when dealing with X11 windows are xdpyinfo & xprop. xdpyinfo can be used to find out information about the X server. So you can figure out which window has focus:

$ xdpyinfo |grep focus
focus:  window 0x5c00005, revert to Parent

xprop and xwininfo can take a -id switch so you can provide them the Window ID that you're interested in instead of having to click on it:

$ xprop -id 0x5c00001|grep -i class
WM_CLASS(STRING) = "gnome-terminal", "Gnome-terminal"

References

slm
  • 369,824
  • I think we can simplify even more using xdotool search --name "saml@grinchy:~" key alt+f4, problem is that I haven't found how to do this with several windows that have the same name... – Braiam Aug 01 '13 at 16:26
  • @Braiam - is there anything unique about them? When you invoke the window you can tell GNOME what you want the titles to be. – slm Aug 01 '13 at 16:31
  • @Braiam - for example: wmctrl -r :ACTIVE: -N "MyWindowTitle – slm Aug 01 '13 at 16:34
  • @Braiam - as to putting the commands together, I'm giving you eggs, you're making the omelet 8-). Added your method to the answer too! – slm Aug 01 '13 at 16:36
  • 1
    I'm trying to use the example provided here to send the key alt+F4 to all the windows (if resize can be done, why not alt+F4), but without luck. And thanks :D. – Braiam Aug 01 '13 at 16:46
  • Mission accomplished! I used xdotool search --name gedit key --window %@ alt+F4 to close all gedit instances successfully, now looking for a way to close windows that have nothing in common. – Braiam Aug 01 '13 at 16:54
  • @Braiam - I think the thing you're looking for is called a mouse 8-). – slm Aug 01 '13 at 16:55
  • 1
    Mouse is overrated :/. And I solved the question, xdotool search --name "gedit|terminal|office" key --window %@ alt+F4 will look for any window that has gedit, terminal or office in it's title name and send the alt+F4 command. – Braiam Aug 01 '13 at 17:24
  • @Braiam - nice. – slm Aug 01 '13 at 17:35
2

I found xdotool to be flaky/buggy, sometimes it closes the foreground window instead of the one that should be closed. This seems to be due to the way that keys are sent after bringing the window to the foreground instead of directly sending window events, and it's a very annoying issue. I suggest using wmctrl, which directly closes a window without sending keystrokes.

You can close a window directly by matching on the name, e.g. both these will close the "Untitled Document 1 - gedit" window:

wmctrl -c "gedit"
wmctrl -c "Untitled"

You can use the -F option to only consider exact matches:

wmctrl -F -c "Untitled Document 1 - gedit"

Or you can give the id directly:

wmctrl -i -c "121634821"

More usage examples/documentation can be found here.

One thing I do find very useful is xdotool's ability to wait until there is a result using the --sync argument. Combining the two in one command is done like this:

xdotool search --sync --name "gedit" | xargs wmctrl -i -c

If you are on a Mac, you'll probably need the -I{} parameter:

xdotool search --sync --name "gedit" | xargs -I{} wmctrl -i -c {}

If you want to support multiple windows, you should tell xargs to call wmctrl with at at most 1 argument each time with the -n option. wmctrl does not explicitly support multiple windows as arguments:

xdotool search --sync --name "gedit" | xargs -I{} -n 1 wmctrl -i -c {}

This will wait until there is at least 1 such window, and then closes all of them.

jmiserez
  • 506
  • 4
  • 10
  • Will I get the "are you sure" prompt dialog box? – Braiam Feb 01 '16 at 14:24
  • @Braiam Yes you will, I just tested it. Only if a program is running in the terminal (e.g. top) of course, same as when clicking the close button. – jmiserez Apr 12 '16 at 11:52
  • I ran xdotool search --sync --name "Software Updater" | xargs wmctrl -i -c on Trusty, and started Software Updater. From now on, Software Updater does not display properly. Just the title bar displays. Reinstalling update-manager did not help. – jarno May 30 '17 at 09:29
  • Gladly logging out and back in to Xfce session did help. – jarno May 30 '17 at 09:46
  • I can't find "gedit" with either xdotool or xprop utilities. It's only true for "gedit", I can find other programs. The command xdotool search --sync --name "gedit" doesn't return result. Can anyone help? Ubuntu 17 – Gonki Mar 10 '18 at 03:55
-1

pkill(1) should be what you need.

schaiba
  • 7,631
  • 3
    No, it won't simulate the "Close" event on any of my test (open a gedit, LibreOffice and the terminal, write something, send the command), if I use the --signal switch is not different of kill or killall. I'm expecting the You want to save? alert. – Braiam Aug 01 '13 at 15:32
  • You're right, seems I misread your question. – schaiba Aug 01 '13 at 15:36