summaryrefslogtreecommitdiffstats
path: root/dwm.c
diff options
context:
space:
mode:
authorDouglas Rumbaugh <doug@douglasrumbaugh.com>2022-12-05 15:49:59 -0500
committerDouglas Rumbaugh <doug@douglasrumbaugh.com>2022-12-05 15:49:59 -0500
commitcb89a1f15534df95f0ff96695cd363a4f229255b (patch)
tree1602bad6bc8c75ac22e08993d94a0dc08e002a7e /dwm.c
parent30b76a1f93a79d7c88c510b53143bfbf146efbd6 (diff)
downloaddwm-cb89a1f15534df95f0ff96695cd363a4f229255b.tar.gz
Tag-0: Focus a window's tags by clicking on it in tag-0
Diffstat (limited to 'dwm.c')
-rw-r--r--dwm.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/dwm.c b/dwm.c
index 37096d8..617cda1 100644
--- a/dwm.c
+++ b/dwm.c
@@ -267,6 +267,8 @@ static void updatestatus(void);
static void updatetitle(Client *c);
static void updatewindowtype(Client *c);
static void updatewmhints(Client *c);
+
+static void t0_view(const Arg *arg);
static void view(const Arg *arg);
static void view_t0(const Arg *arg);
static Client *wintoclient(Window w);
@@ -2441,6 +2443,15 @@ updatewmhints(Client *c)
}
}
+
+void
+t0_view(const Arg *arg)
+{
+ if (selmon->pertag->curtag == 0) {
+ view(arg);
+ }
+}
+
void
view(const Arg *arg)
{