MonitorControl/.github/rules.json
Guillaume Broder 455775617c
🐛 Fix Readme errors
Signed-off-by: Guillaume Broder <iamnotheoneyouseek@gmail.com>
2017-09-24 16:01:36 +02:00

120 lines
No EOL
2 KiB
JSON

{
"title": "MonitorControl (@the0neyouseek)",
"rules": [
{
"description": "External Screen brightness [-] (using MonitorControl)",
"manipulators": [{
"type": "basic",
"from": {
"key_code": "f1",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [{
"key_code": "down_arrow",
"modifiers": [
"left_shift",
"left_control",
"left_option",
"left_command"
]
}]
}]
},
{
"description": "External Screen brightness [+] (using MonitorControl)",
"manipulators": [{
"type": "basic",
"from": {
"key_code": "f2",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [{
"key_code": "up_arrow",
"modifiers": [
"left_shift",
"left_control",
"left_option",
"left_command"
]
}]
}]
},
{
"description": "External Screen volume [-] (using MonitorControl)",
"manipulators": [{
"type": "basic",
"from": {
"key_code": "f11",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [{
"key_code": "left_arrow",
"modifiers": [
"left_shift",
"left_control",
"left_option",
"left_command"
]
}]
}]
},
{
"description": "External Screen volume [+] (using MonitorControl)",
"manipulators": [{
"type": "basic",
"from": {
"key_code": "f12",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [{
"key_code": "right_arrow",
"modifiers": [
"left_shift",
"left_control",
"left_option",
"left_command"
]
}]
}]
},
{
"description": "External Screen volume mute (using MonitorControl)",
"manipulators": [{
"type": "basic",
"from": {
"key_code": "f10",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [{
"key_code": "equal_sign",
"modifiers": [
"left_shift",
"left_control",
"left_option",
"left_command"
]
}]
}]
}
]
}