tnew tool: chwso - wmutils - X windows manipulation utilities
(HTM) git clone git://z3bra.org/wmutils
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 7f854033f612a174a889c81384ca8730f1df717e
(DIR) parent 1177dcb85ecce71042f7346a83355b0362bb40ca
(HTM) Author: dcat <dcat@iotek.org>
Date: Fri, 28 Nov 2014 02:47:29 +0100
new tool: chwso
Diffstat:
M Makefile | 3 ++-
A chwso.c | 81 ++++++++++++++++++++++++++++++
2 files changed, 83 insertions(+), 1 deletion(-)
---
(DIR) diff --git a/Makefile b/Makefile
t@@ -14,7 +14,8 @@ SRC = \
killw.c \
wattr.c \
wtp.c \
- wmv.c
+ wmv.c \
+ chwso.c
OBJ = $(SRC:.c=.o)
BIN = $(SRC:.c=)
(DIR) diff --git a/chwso.c b/chwso.c
t@@ -0,0 +1,81 @@
+/**
+* Copyright (c) 2014, Broseph <dcat (at) iotek (dot) org>
+*
+* Permission to use, copy, modify, and/or distribute this software for any
+* purpose with or without fee is hereby granted, provided that the above
+* copyright notice and this permission notice appear in all copies.
+*
+* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+* MERCHANTABILITY AND FITNESS IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+**/
+
+#include <xcb/xcb.h>
+#include <stdlib.h>
+#include <stdio.h>
+#include <err.h>
+
+#include "arg.h"
+
+static xcb_connection_t *conn;
+
+static void cleanup (void);
+static void usage (char *);
+static void stack (xcb_window_t, uint32_t[1]);
+
+static void
+usage (char *name)
+{
+ fprintf(stderr, "usage %s -rli <wid>\n", name);
+ exit(1);
+}
+
+static void
+cleanup (void)
+{
+ if (conn)
+ xcb_disconnect(conn);
+}
+
+static void
+stack (xcb_window_t win, uint32_t values[1])
+{
+ xcb_configure_window(conn, win, XCB_CONFIG_WINDOW_STACK_MODE, values);
+}
+
+int
+main (int argc, char **argv)
+{
+ xcb_window_t win;
+ uint32_t values[1];
+ char *argv0 = NULL;
+
+ if (argc != 3)
+ usage(argv[0]);
+
+ atexit(cleanup);
+ if (xcb_connection_has_error(conn = xcb_connect(NULL, NULL)))
+ errx(1, "error connecting to X");
+
+
+ win = strtoul(argv[2], NULL, 16);
+ if (!win)
+ return 1;
+
+ ARGBEGIN {
+ case 'r': values[0] = XCB_STACK_MODE_ABOVE; break;
+ case 'l': values[0] = XCB_STACK_MODE_BELOW; break;
+ case 'i': values[0] = XCB_STACK_MODE_OPPOSITE; break;
+ default: usage(argv0); break;
+ } ARGEND
+
+ stack(win, values);
+ xcb_flush(conn);
+
+ return 0;
+}
+