Add mouse binding pointer position configuration
Add the `--whole-window` switch for mouse bindings. This switch controls what part of the container the pointer must be over to trigger a mouse binding. The default is to only trigger mouse bindings over the titlebars. With this switch, a mouse binding will be triggered over the main part of the window as well. This is a breaking change to the previous behavior, which would trigger a mouse binding with a modifier over any part of the window. fixes #1429
This commit is contained in:
committed by
Michael Stapelberg
parent
f28ce227e3
commit
74b69d6d02
@ -278,6 +278,8 @@ state FONT:
|
||||
state BINDING:
|
||||
release = '--release'
|
||||
->
|
||||
whole_window = '--whole-window'
|
||||
->
|
||||
modifiers = 'Mod1', 'Mod2', 'Mod3', 'Mod4', 'Mod5', 'Shift', 'Control', 'Ctrl', 'Mode_switch', '$mod'
|
||||
->
|
||||
'+'
|
||||
@ -288,8 +290,10 @@ state BINDING:
|
||||
state BINDCOMMAND:
|
||||
release = '--release'
|
||||
->
|
||||
whole_window = '--whole-window'
|
||||
->
|
||||
command = string
|
||||
-> call cfg_binding($bindtype, $modifiers, $key, $release, $command)
|
||||
-> call cfg_binding($bindtype, $modifiers, $key, $release, $whole_window, $command)
|
||||
|
||||
################################################################################
|
||||
# Mode configuration
|
||||
@ -333,8 +337,10 @@ state MODE_BINDING:
|
||||
state MODE_BINDCOMMAND:
|
||||
release = '--release'
|
||||
->
|
||||
whole_window = '--whole-window'
|
||||
->
|
||||
command = string
|
||||
-> call cfg_mode_binding($bindtype, $modifiers, $key, $release, $command); MODE
|
||||
-> call cfg_mode_binding($bindtype, $modifiers, $key, $release, $whole_window, $command); MODE
|
||||
|
||||
################################################################################
|
||||
# Bar configuration (i3bar)
|
||||
|
Reference in New Issue
Block a user