summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorQC <qball@gmpclient.org>2014-01-26 15:39:50 +0100
committerQC <qball@gmpclient.org>2014-01-26 15:39:50 +0100
commit0529d21ffd1f6dd66b1ad8ae9ee49fe0cb526673 (patch)
treefe057db59c015fdb54e12c220e54f585e50ee5bb /include
parentbd33e93e165e3a6d4cad342537b7e3d08da5bed1 (diff)
Add support for selecting marks
Diffstat (limited to 'include')
-rw-r--r--include/simpleswitcher.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/simpleswitcher.h b/include/simpleswitcher.h
index a04dac7b..102cfdd4 100644
--- a/include/simpleswitcher.h
+++ b/include/simpleswitcher.h
@@ -10,11 +10,17 @@
#define INTERSECT(x,y,w,h,x1,y1,w1,h1) (OVERLAP((x),(w),(x1),(w1)) && OVERLAP((y),(h),(y1),(h1)))
extern const char *cache_dir;
+#ifdef I3
+extern char *i3_socket_path;
+#endif
typedef enum {
WINDOW_SWITCHER,
RUN_DIALOG,
SSH_DIALOG,
+#ifdef I3
+ MARK_DIALOG,
+#endif
NUM_DIALOGS,
MODE_EXIT,
NEXT_DIALOG
@@ -82,6 +88,9 @@ typedef struct _Settings {
WindowLocation location;
WindowMode wmode;
unsigned int inner_margin;
+#ifdef I3
+ char * mark_key;
+#endif
} Settings;
extern Settings config;