Can I minimize a window from the command line?

In Kubuntu 12.04 I use the following command to minimize the active window:

xdotool windowminimize $(xdotool getactivewindow)

I suspect you may replace the $(xdotool getactivewindow) with a string identifying any window that you need to minimize.


You can kind of do this with WMCtrl. It's a tool that allows you to control the window manager from the command line. You can find it in the repositories.

It's compatible with Metacity and KWin (The defaults for Gnome and Kde).

You can use this command to get a list of currently open windows. This will include the window name:

wmctrl -l

Once you have the window name, you can use this command to shade a window:

wmctrl -r "windowname" -b toggle,shaded

I don't think minimization is supported because it's not covered by the EWMH spec, but you can do shading and maximization so it might suit your needs.


to minimize the active window

xdotool getactivewindow windowminimize

works on gnome3.24 shell extension such as custom hot corner, "xdotool windowminimize $(xdotool getactivewindow)" won't.


Another xdotool example:

xdotool search --onlyvisible --classname --sync Navigator windowminimize

This searches (and waits, due to --sync) for a visible Navigator window, and then minimizes it.

See xdotool(1) section COMMAND CHAINING:

xdotool supports running multiple commands on a single invocation. Generally, you'll start with a search command (see "WINDOW STACK") and then perform a set of actions on those results.


You could use xdotool to simulate the keyboard event Alt-F3 after focusing on the window. It's a hack, but depending on your problem, it might be enough.