summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorVito Caputo <vcaputo@gnugeneration.com>2017-03-10 13:47:15 -0800
committerVito Caputo <vcaputo@gnugeneration.com>2017-03-14 19:41:48 -0700
commit448423ee1e933d926e6089a56d39026054f41a59 (patch)
tree3f2f5dad7b20def7deb71bf5f58ca3e0fa1bafc2 /src
parent5bebde59c93312d0cef33b7e62f37dd3bc939ce0 (diff)
vwm: minor tidying of vwm.h
Diffstat (limited to 'src')
-rw-r--r--src/vwm.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/vwm.h b/src/vwm.h
index 4b5196b..3db7e7b 100644
--- a/src/vwm.h
+++ b/src/vwm.h
@@ -1,8 +1,6 @@
#ifndef _VWM_H
#define _VWM_H
-// #include <X11/Xlib.h>
-// #include <X11/Xutil.h>
#include <X11/Xlib.h>
#include <X11/extensions/Xinerama.h>
@@ -43,8 +41,10 @@ typedef struct _vwm_t {
Atom wm_protocols_atom;
Atom wm_pid_atom;
int damage_event, damage_error;
- int done; /* global flag to cause vwm to quit */
+ XineramaScreenInfo *xinerama_screens;
+ int xinerama_screens_cnt;
+ int done; /* global flag to cause vwm to quit */
list_head_t desktops; /* global list of all (virtual) desktops in spatial created-in order */
list_head_t desktops_mru; /* global list of all (virtual) desktops in MRU order */
list_head_t windows_mru; /* global list of all managed windows kept in MRU order */
@@ -63,9 +63,6 @@ typedef struct _vwm_t {
#include "colors.def"
#undef color
} colors;
-
- XineramaScreenInfo *xinerama_screens;
- int xinerama_screens_cnt;
} vwm_t;
#endif
© All Rights Reserved