example_mirror.toml 618 B

12345678910111213141516171819202122232425262728293031323334
  1. # Mirror exmaple
  2. #
  3. # Press Alt when W is down, and release Alt when W is up
  4. #
  5. # Use Z to toggle on and off
  6. # key to toggle
  7. keybind = "z"
  8. # kind of event
  9. kind = "mirror"
  10. # Mirror what key
  11. mirror = "w"
  12. # When mirror is down, so will this
  13. # When mirror is up, so will this
  14. #
  15. # In this case, alt will be held down when w is (only when toggled on)
  16. write = "alt"
  17. # Or button could be configured
  18. #
  19. # For example: right click when w (down when w is, up when w is)
  20. #button = "right"
  21. # << REQUIRED >>
  22. # This is needed for "mirror" kinds
  23. # We don't want delays, so make sure you turn everything off!
  24. #
  25. delay = 0
  26. hold = 0