diff options
| author | Fuwn <[email protected]> | 2024-05-23 15:18:20 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-05-23 15:18:20 -0700 |
| commit | 7e85183642cfa54cf8d28015876dd3feeada356c (patch) | |
| tree | 5bfb3f3189ca9129303c97f0771c9cedd08864fc | |
| parent | fix(dwm.c): barpadding and systray compatibility (diff) | |
| download | seiwm-7e85183642cfa54cf8d28015876dd3feeada356c.tar.xz seiwm-7e85183642cfa54cf8d28015876dd3feeada356c.zip | |
feat(dwm.c): toggle bar on fullscreen toggle
| -rw-r--r-- | dwm.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -2264,8 +2264,10 @@ togglefloating(const Arg *arg) void togglefullscr(const Arg *arg) { - if(selmon->sel) + if(selmon->sel) { setfullscreen(selmon->sel, !selmon->sel->isfullscreen); + togglebar(NULL); + } } void |