summaryrefslogtreecommitdiff
path: root/openbox/config.h
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2011-10-14 19:12:11 -0400
committerDana Jansens <danakj@orodu.net>2011-10-16 18:51:51 -0400
commitc590a83207ed5825b513e2278789ed13f55574b2 (patch)
tree86d4c950fdd7cd534c9f5fd94f9abfb887a577c5 /openbox/config.h
parenta0d14c7d4468b6348d906a68bb5dfe3acce0ad64 (diff)
Add "active" and "primary" options to the <monitor> placement option for per-app settings (bug #5180)
Diffstat (limited to 'openbox/config.h')
-rw-r--r--openbox/config.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/openbox/config.h b/openbox/config.h
index 890b002a..1802179d 100644
--- a/openbox/config.h
+++ b/openbox/config.h
@@ -33,6 +33,13 @@
typedef struct _ObAppSettings ObAppSettings;
+typedef enum {
+ OB_APP_SETTINGS_MONITOR_FIXED,
+ OB_APP_SETTINGS_MONITOR_PRIMARY,
+ OB_APP_SETTINGS_MONITOR_ACTIVE,
+ OB_APP_SETTINGS_MONITOR_MOUSE
+} ObAppSettingsMonitor;
+
struct _ObAppSettings
{
GPatternSpec *class;
@@ -49,6 +56,7 @@ struct _ObAppSettings
gint shade;
gint decor;
gint focus;
+ ObAppSettingsMonitor monitor_type;
gint monitor;
gint iconic;
gint skip_pager;