diff options
| author | Fuwn <[email protected]> | 2024-05-23 16:10:07 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-05-23 16:10:07 -0700 |
| commit | 890799019c20852b54191bd7e71307802a0196e4 (patch) | |
| tree | fa59996d2653ab4f7ab356fd8efe0c29cf664423 | |
| parent | feat(dwm.c): add combo patch (diff) | |
| download | seiwm-890799019c20852b54191bd7e71307802a0196e4.tar.xz seiwm-890799019c20852b54191bd7e71307802a0196e4.zip | |
fix(dwm.c): pertag and combo compatibility
| -rw-r--r-- | dwm.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -449,6 +449,8 @@ comboview(const Arg *arg) { if (combo) { selmon->tagset[selmon->seltags] |= newtags; } else { + /* https://www.reddit.com/r/suckless/comments/g1fxyn/making_pertag_and_combo_play_nicely_together/fnffllq/ */ + view(arg); /* <---- dirty hack */ selmon->seltags ^= 1; /*toggle tagset*/ combo = 1; if (newtags) |