diff options
author | okan | 2017-12-19 14:30:53 +0000 |
---|---|---|
committer | okan | 2017-12-19 14:30:53 +0000 |
commit | 51864faa7356c0dc3bf6b7eed8a904f2023d2b8d (patch) | |
tree | 74f47a63bc3daa1258f881f1c8721b5656af7d5f /conf.c | |
parent | 27ae8bb8e754cc296f0bec61934f1a13e6bf32c0 (diff) | |
download | cwm-51864faa7356c0dc3bf6b7eed8a904f2023d2b8d.tar.gz |
Add support for _NET_WM_STATE_SKIP_PAGER and _NET_WM_STATE_SKIP_TASKBAR; eerily
close to cwm's 'ignore'.
Roughly based on an initial diff from Walter Alejandro Iglesias, but with
support for both Atoms and without cwm-based bindings.
Diffstat (limited to '')
-rw-r--r-- | conf.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $OpenBSD: conf.c,v 1.235 2017/12/07 16:25:33 okan Exp $ + * $OpenBSD: conf.c,v 1.236 2017/12/19 14:30:53 okan Exp $ */ #include <sys/types.h> @@ -720,6 +720,8 @@ static char *ewmhints[] = { "_NET_WM_STATE_HIDDEN", "_NET_WM_STATE_FULLSCREEN", "_NET_WM_STATE_DEMANDS_ATTENTION", + "_NET_WM_STATE_SKIP_PAGER", + "_NET_WM_STATE_SKIP_TASKBAR", "_CWM_WM_STATE_FREEZE", }; |