diff options
| author | 0scar <qgt268@alumni.ku.dk> | 2024-09-30 10:37:36 +0000 |
|---|---|---|
| committer | 0scar <qgt268@alumni.ku.dk> | 2024-10-01 11:53:32 +0000 |
| commit | 40c2808d355606d7bff39daf23dbe23f2b73d585 (patch) | |
| tree | 0bbc5e255e5afa2465e377dc5446d3c0750983d7 /config.def.h | |
| parent | 63278a4ceef14693fb3bf6c62174359faebf2036 (diff) | |
Patch: swallow
Diffstat (limited to 'config.def.h')
| -rw-r--r-- | config.def.h | 11 |
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 |
