| 12345678910111213141516171819202122232425262728293031323334 |
- # Mirror exmaple
- #
- # Press Alt when W is down, and release Alt when W is up
- #
- # Use Z to toggle on and off
- # key to toggle
- keybind = "z"
- # kind of event
- kind = "mirror"
- # Mirror what key
- mirror = "w"
- # When mirror is down, so will this
- # When mirror is up, so will this
- #
- # In this case, alt will be held down when w is (only when toggled on)
- write = "alt"
- # Or button could be configured
- #
- # For example: right click when w (down when w is, up when w is)
- #button = "right"
- # << REQUIRED >>
- # This is needed for "mirror" kinds
- # We don't want delays, so make sure you turn everything off!
- #
- delay = 0
- hold = 0
|