_example.toml 893 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # Tyrell :: v0.1-dev :: More human than human
  2. # Placeholders
  3. # Enable '{name}', emitting profile name
  4. placeholder_name = 'true'
  5. # Tick speed
  6. # Value in milliseconds
  7. # Defaults to 20 ticks per second
  8. # Can't be overridden
  9. tick = 50
  10. # What is the key to activate/deactivate Tyrell
  11. # This hotkey must be in the format, 'ctrl+shift+a' (user holds ctrl, shift and 'a' at once)
  12. # Can't be overridden
  13. activator = '`'
  14. # What is the key to display help
  15. # This hotkey must be in the format, 'ctrl+shift+a' (user holds ctrl, shift and 'a' at once)
  16. # Defaults to '?'
  17. # Can't be overridden
  18. helper = 'shift+/'
  19. # These can be overridden per key-bind
  20. # Delay between each keys
  21. # Value in milliseconds
  22. delay = 50
  23. # Hold delay for each key
  24. # Keys are sent like below:
  25. # 1. key down
  26. # 2. hold delay
  27. # 3. key up
  28. # 4. hold delay
  29. # 5. delay (see above)
  30. # 6. Repeat for keys
  31. # Value in milliseconds
  32. hold = 20