diff options
| author | Douglas Rumbaugh <doug@douglasrumbaugh.com> | 2022-01-12 14:56:48 -0500 |
|---|---|---|
| committer | Douglas Rumbaugh <doug@douglasrumbaugh.com> | 2022-01-12 14:56:48 -0500 |
| commit | aff663b62e7d603c0796485fcd42002a37c64c82 (patch) | |
| tree | dddddac61e6deb5b62035b06df1278bba7f9041c /config.def.h | |
| parent | 60da42738a44896956b4cb31a00e686e40e11fc3 (diff) | |
| download | dwm-aff663b62e7d603c0796485fcd42002a37c64c82.tar.gz | |
Enabled switching to tags by clicking
This is a little fragile, but it seems like it works at least for my
configuration. If you do a SUPER+SHIFT+CLICK1 on a window, it will
activate all the tags associated with that window. The main idea here
is to allow going to the tags of a window from view all tags with a
mouse click.
Diffstat (limited to 'config.def.h')
| -rw-r--r-- | config.def.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index b82f181..4063264 100644 --- a/config.def.h +++ b/config.def.h @@ -306,6 +306,7 @@ static Button buttons[] = { { ClkClientWin, MODKEY, Button1, movemouse, {0} }, { ClkClientWin, MODKEY, Button2, togglefloating, {0} }, { ClkClientWin, MODKEY, Button3, resizemouse, {0} }, + { ClkClientWin, MODKEY|ShiftMask, Button1, view, {0} }, { ClkTagBar, 0, Button1, view, {0} }, { ClkTagBar, 0, Button3, toggleview, {0} }, { ClkTagBar, MODKEY, Button1, tag, {0} }, |