diff options
author | Joe <rbo@gmx.us> | 2025-02-28 20:59:22 +0100 |
---|---|---|
committer | Joe <rbo@gmx.us> | 2025-02-28 20:59:22 +0100 |
commit | f754a57438a46dafcc0ad6c13ad1d66dc05a21b4 (patch) | |
tree | 30bd22f50f2f284fdf0c92f7c7c48071f78515de /config.def.h | |
parent | fuck tearing (diff) | |
download | dwl-f754a57438a46dafcc0ad6c13ad1d66dc05a21b4.tar.gz dwl-f754a57438a46dafcc0ad6c13ad1d66dc05a21b4.tar.bz2 dwl-f754a57438a46dafcc0ad6c13ad1d66dc05a21b4.tar.xz dwl-f754a57438a46dafcc0ad6c13ad1d66dc05a21b4.tar.zst dwl-f754a57438a46dafcc0ad6c13ad1d66dc05a21b4.zip |
swallowd
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/config.def.h b/config.def.h index 0bd2fa4..1c875f6 100644 --- a/config.def.h +++ b/config.def.h @@ -40,10 +40,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) */ 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" */ + { "Alacritty", NULL, 0, 0, 1, 1, -1 }, /* make foot swallow clients that are not foot */ + { "st", NULL, 0, 0, 1, 1, -1 }, /* make foot swallow clients that are not foot */ + { "mpv", NULL, 0, 0, 0, 0, -1 }, /* make foot swallow clients that are not foot */ }; /* layout(s) */ |