diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-05-06 22:57:49 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-05-06 22:57:49 +0000 |
| commit | 7ffa091d5b464ce508023c3b5e5bc50a36be53fb (patch) | |
| tree | 3cbd3840af488e4ef1de2caf0614047ef507e5c3 /openbox/config.h | |
| parent | 6cd5f7ea380e155dbd7b29f01dd3fcfb5858ad61 (diff) | |
change the perapp settings "head" option to "monitor" i think its easier to understand.
some cleanup for perapp settings.
make monitor and desktop be specified starting at 1, like elsewhere in the config file.
Diffstat (limited to 'openbox/config.h')
| -rw-r--r-- | openbox/config.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/openbox/config.h b/openbox/config.h index f85f4f11..41cf7482 100644 --- a/openbox/config.h +++ b/openbox/config.h @@ -23,12 +23,39 @@ #include "misc.h" #include "stacking.h" #include "place.h" +#include "geom.h" #include "render/render.h" #include <glib.h> struct _ObParseInst; +struct _ObAppSettings +{ + gchar *class; + gchar *name; + gchar *role; + + Point position; + gboolean center_x; + gboolean center_y; + gboolean pos_given; + + guint desktop; + gint shade; + gint decor; + gint focus; + gint monitor; + gint iconic; + gint skip_pager; + gint skip_taskbar; + gint max_horz; + gint max_vert; + gint fullscreen; + + gint layer; +}; + /*! Should new windows be focused */ extern gboolean config_focus_new; /*! Focus windows when the mouse enters them */ |
