alwaysfullscreen patch

This commit is contained in:
Sravan Balaji
2020-11-23 20:36:39 -05:00
parent 92b735ffef
commit 7d0f7c5f99
3 changed files with 15 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
diff --git a/dwm.c b/dwm.c
index 0362114..a5cab76 100644
--- a/dwm.c
+++ b/dwm.c
@@ -847,7 +847,7 @@ focusstack(const Arg *arg)
{
Client *c = NULL, *i;
- if (!selmon->sel)
+ if (!selmon->sel || selmon->sel->isfullscreen)
return;
if (arg->i > 0) {
for (c = selmon->sel->next; c && !ISVISIBLE(c); c = c->next);