Advertisement
Guest User

Untitled

a guest
Aug 19th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. {
  2. "title": "Volume Precision Control",
  3. "rules": [
  4. {
  5. "description": "Precise Volume Increment",
  6. "manipulators": [
  7. {
  8. "type": "basic",
  9. "from": {
  10. "key_code": "f11",
  11. "modifiers": {
  12. "optional": ["any"]
  13. }
  14. },
  15. "to": [
  16. {
  17. "key_code": "f11",
  18. "modifiers": ["left_alt", "left_shift"]
  19. }
  20. ]
  21. }
  22. ]
  23. },
  24. {
  25. "description": "Precise Volume Decrement",
  26. "manipulators": [
  27. {
  28. "type": "basic",
  29. "from": {
  30. "key_code": "f10",
  31. "modifiers": {
  32. "optional": ["any"]
  33. }
  34. },
  35. "to": [
  36. {
  37. "key_code": "f10",
  38. "modifiers": ["left_alt", "left_shift"]
  39. }
  40. ]
  41. }
  42. ]
  43. }
  44. ]
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement