summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2017-02-11 17:12:07 +0100
committerDave Davenport <qball@gmpclient.org>2017-02-11 17:12:07 +0100
commita579c86c1fbb9428f31199a04fc4ced8e554ab3f (patch)
tree9a70030cf927a8da8e306859a5c5df34e146ed95 /include
parentc3865215748013b03fbe7ad8ba4a939b38636c0b (diff)
Only switch to the desktop first if we are on AweSome WM
Diffstat (limited to 'include')
-rw-r--r--include/x11-helper.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/x11-helper.h b/include/x11-helper.h
index 4c915da5..fadfcf5c 100644
--- a/include/x11-helper.h
+++ b/include/x11-helper.h
@@ -264,11 +264,11 @@ void x11_disable_decoration ( xcb_window_t window );
typedef enum {
/** Default EWHM compatible window manager */
- WM_EWHM,
+ WM_EWHM = 0,
/** I3 Window manager */
- WM_I3,
+ WM_I3 = 1,
/** Awesome window manager */
- WM_AWESOME
+ WM_AWESOME = 2
} WindowManager;
/**