summaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/config.def.h b/config.def.h
index 6d4ccd0..82d9836 100644
--- a/config.def.h
+++ b/config.def.h
@@ -28,12 +28,13 @@ static int log_level = WLR_ERROR;
/* NOTE: ALWAYS keep a rule declared even if you don't use rules (e.g leave at least one example) */
#define TAG(t) (1 << (t - 1))
static const Rule rules[] = {
- /* app_id title tags mask isfloating monitor scratchkey */
+ /* app_id title tags mask isfloating isterm noswallow monitor scratchkey */
/* examples: */
- { "Gimp", NULL, TAG(9), 1, -1, 0 }, /* Start on currently visible tags floating, not tiled */
- { "firefox", NULL, TAG(2), 0, -1, 0 }, /* Start on ONLY tag "9" */
- { NULL, "scratchpad", 0, 1, -1, 's' }, /* Used for terminal scratchpad */
- { NULL, "spadcalc", 0, 1, -1, 'c' }, /* Used for terminal scratchpad */
+ { "Gimp", NULL, TAG(9), 1, 0, 0, -1, 0 }, /* Start on currently visible tags floating, not tiled */
+ { "firefox", NULL, TAG(2), 0, 0, 0, -1, 0 }, /* Start on ONLY tag "9" */
+ { TERMINAL, NULL, 0, 0, 1, 1, -1, 0 }, /* Start on ONLY tag "9" */
+ { NULL, "scratchpad", 0, 1, 1, 1, -1, 's' }, /* Used for terminal scratchpad */
+ { NULL, "spadcalc", 0, 1, 1, 0, -1, 'c' }, /* Used for terminal scratchpad */
};
#undef TAG