add mouse bindings to use mouse wheel on focustitle widget

This commit is contained in:
Thomas Guebels 2007-12-29 21:55:00 +01:00 committed by Julien Danjou
parent 3d71a2e9a4
commit a26bce5132
1 changed files with 25 additions and 1 deletions

View File

@ -88,7 +88,31 @@ screen 0
}
}
netwmicon mynetwmicon {}
focustitle myfocustitle {}
focustitle myfocustitle
{
mouse
{
button = "4"
command = "client_focusnext"
}
mouse
{
button = "5"
command = "client_focusprev"
}
mouse
{
modkey = {"Mod4"}
button = "4"
command = "client_swapnext"
}
mouse
{
modkey = {"Mod4"}
button = "5"
command = "client_swapprev"
}
}
textbox mytextbox { text = "awesome!" }
}
}