diff options
| author | Chris Sobczak <chris@sobczak.family> | 2026-06-26 20:40:21 -0700 |
|---|---|---|
| committer | Chris Sobczak <chris@sobczak.family> | 2026-06-26 20:40:21 -0700 |
| commit | 87d46bf4c7712216226627be579f9d0906a691ea (patch) | |
| tree | 0afd58bfba70a1ee37ceee2ae25afafdebfc13b4 | |
| parent | 1ea0c20cbed805445e8153659f6d11f4e8a4a227 (diff) | |
Get rid of ghost column of NULLS that came out of nowhere?
| -rw-r--r-- | config.def.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/config.def.h b/config.def.h index 9fcb9d5..8b2dbfe 100644 --- a/config.def.h +++ b/config.def.h @@ -26,15 +26,15 @@ static const Rule rules[] = { // /* Start on currently visible tags floating, not tiled */ // { "firefox_EXAMPLE", NULL, 1 << 8, 0, -1 }, // /* Start on ONLY tag "9" */ - { "Gimp", NULL, NULL, 0, 1, -1 }, - { "mpv", NULL, NULL, 0, 1, -1 }, - { "Firefox", NULL, NULL, 1, 0, -1 }, - { "firefox", NULL, NULL, 1, 0, -1 }, - { "LibreWolf", NULL, NULL, 1, 0, -1 }, - { "librewolf", NULL, NULL, 1, 0, -1 }, - { "Thunderbird", NULL, NULL, 1 << 1, 0, 0 }, - { "Pavucontrol", NULL, NULL, 1 << 4, 0, 0 }, - { "pavucontrol", NULL, NULL, 1 << 4, 0, 0 }, + { "Gimp", NULL, 0, 1, -1 }, + { "mpv", NULL, 0, 1, -1 }, + { "Firefox", NULL, 1, 0, -1 }, + { "firefox", NULL, 1, 0, -1 }, + { "LibreWolf", NULL, 1, 0, -1 }, + { "librewolf", NULL, 1, 0, -1 }, + { "Thunderbird", NULL, 1 << 1, 0, 0 }, + { "Pavucontrol", NULL, 1 << 4, 0, 0 }, + { "pavucontrol", NULL, 1 << 4, 0, 0 }, }; /* default/example rule: can be changed but cannot be eliminated; at least one rule must exist */ }; |
