diff options
author | choc <notchoc@proton.me> | 2023-09-15 10:36:21 +0800 |
---|---|---|
committer | DrNuget <drnuget@outlook.com> | 2025-01-17 10:44:21 +0200 |
commit | f442caf0305b2a8cfeb302b255f7e08463950f70 (patch) | |
tree | f84db25c56242a43feb2eb51008b69b413b1a004 /config.def.h | |
parent | 247544a3221087d82d6c9003e4dac54e911d5a19 (diff) |
implement swallow
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/config.def.h b/config.def.h index 8ccbea3..86e5afa 100644 --- a/config.def.h +++ b/config.def.h @@ -31,10 +31,11 @@ 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) */ static const Rule rules[] = { - /* app_id title tags mask isfloating monitor */ + /* app_id title tags mask isfloating isterm noswallow monitor */ /* examples: */ - { "Gimp_EXAMPLE", NULL, 0, 1, -1 }, /* Start on currently visible tags floating, not tiled */ - { "firefox_EXAMPLE", NULL, 1 << 8, 0, -1 }, /* Start on ONLY tag "9" */ + { "Gimp_EXAMPLE", NULL, 0, 1, 0, 0, -1 }, /* Start on currently visible tags floating, not tiled */ + { "firefox_EXAMPLE", NULL, 1 << 8, 0, 0, 0, -1 }, /* Start on ONLY tag "9" */ + { "foot", NULL, 0, 0, 1, 1, -1 }, /* make foot swallow clients that are not foot */ }; /* layout(s) */ |