diff options
author | Mateja <mail@matejamaric.com> | 2021-06-08 22:44:09 +0200 |
---|---|---|
committer | Mateja <mail@matejamaric.com> | 2021-06-08 22:44:09 +0200 |
commit | 969488c85639b52cbe43b158362ed4f5628a756a (patch) | |
tree | 4b69cdada98d08fd2ea7637452ded7081fdd2247 | |
parent | e82696505c1b692248d8670747d5c0adb463a281 (diff) | |
download | dwm-969488c85639b52cbe43b158362ed4f5628a756a.tar.gz dwm-969488c85639b52cbe43b158362ed4f5628a756a.zip |
Add mouse wheel support to statusbar.
-rw-r--r-- | config.def.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index 7eb8ad0..9f80ee4 100644 --- a/config.def.h +++ b/config.def.h @@ -138,6 +138,8 @@ static Button buttons[] = { { ClkStatusText, 0, Button1, sigstatusbar, {.i = 1} }, { ClkStatusText, 0, Button2, sigstatusbar, {.i = 2} }, { ClkStatusText, 0, Button3, sigstatusbar, {.i = 3} }, + { ClkStatusText, 0, Button4, sigstatusbar, {.i = 4} }, + { ClkStatusText, 0, Button5, sigstatusbar, {.i = 5} }, { ClkClientWin, MODKEY, Button1, movemouse, {0} }, { ClkClientWin, MODKEY, Button2, togglefloating, {0} }, { ClkClientWin, MODKEY, Button3, resizemouse, {0} }, |