Adapted userguide for new i3bar 'bindsym' command.

This commit is contained in:
Ingo Bürk 2015-05-02 21:56:10 +02:00
parent 715fbf2d80
commit f0ac9629b9
1 changed files with 29 additions and 11 deletions

View File

@ -1209,23 +1209,41 @@ Available modifiers are Mod1-Mod5, Shift, Control (see +xmodmap(1)+).
=== Mouse button commands === Mouse button commands
Specifies a command to run when a button was pressed on i3bar to override the Specifies a command to run when a button was pressed on i3bar to override the
default behavior. Currently only the mouse wheel buttons are supported. This is default behavior. This is useful, e.g., for disabling the scroll wheel action
useful for disabling the scroll wheel action or running scripts that implement or running scripts that implement custom behavior for these buttons.
custom behavior for these buttons.
A button is always named +button<n>+, where 1 to 5 are default buttons as follows and higher
numbers can be special buttons on devices offering more buttons:
button1::
Left mouse button.
button2::
Middle mouse button.
button3::
Right mouse button.
button4::
Scroll wheel up.
button5::
Scroll wheel down.
Please note that the old +wheel_up_cmd+ and +wheel_down_cmd+ commands are deprecated
and will be removed in a future release. We strongly recommend using the more general
+bindsym+ with +button4+ and +button5+ instead.
*Syntax*: *Syntax*:
--------------------- ----------------------------
wheel_up_cmd <command> bindsym button<n> <command>
wheel_down_cmd <command> ----------------------------
---------------------
*Example*: *Example*:
--------------------- ---------------------------------------------------------
bar { bar {
wheel_up_cmd nop # disable clicking on workspace buttons
wheel_down_cmd exec ~/.i3/scripts/custom_wheel_down bindsym button1 nop
# execute custom script when scrolling downwards
bindsym button5 exec ~/.i3/scripts/custom_wheel_down
} }
--------------------- ---------------------------------------------------------
=== Bar ID === Bar ID