aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Donahue <david.donahue2996@gmail.com>2021-02-07 01:03:04 -0600
committerDavid Donahue <david.donahue2996@gmail.com>2021-02-07 01:03:04 -0600
commit27598bd04a17f78d3a3fb27d61fe72ffd9ae1f32 (patch)
tree545c183469201bcadae3fd91514045ede4f0e885
parent3868217466a2264f2645b5f63c74d0ae1a28acd6 (diff)
added statusbar update when tags are updated
-rw-r--r--dwl.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/dwl.c b/dwl.c
index 8e43829..7e9a2fd 100644
--- a/dwl.c
+++ b/dwl.c
@@ -2200,6 +2200,7 @@ tag(const Arg *arg)
focusclient(focustop(selmon), 1);
arrange(selmon);
}
+ statusbar();
}
void
@@ -2269,6 +2270,7 @@ toggletag(const Arg *arg)
focusclient(focustop(selmon), 1);
arrange(selmon);
}
+ statusbar();
}
void
@@ -2281,6 +2283,7 @@ toggleview(const Arg *arg)
focusclient(focustop(selmon), 1);
arrange(selmon);
}
+ statusbar();
}
void
@@ -2361,6 +2364,7 @@ view(const Arg *arg)
selmon->tagset[selmon->seltags] = arg->ui & TAGMASK;
focusclient(focustop(selmon), 1);
arrange(selmon);
+ statusbar();
}
void