mirror of
https://github.com/danbee/dotfiles-local
synced 2025-03-04 08:49:07 +00:00
Add fn+(7890-=) for media keys
This commit is contained in:
parent
d091a7829e
commit
751276f579
@ -12,6 +12,71 @@
|
||||
"basic.to_if_alone_timeout_milliseconds": 1000
|
||||
},
|
||||
"rules": [
|
||||
{
|
||||
"description": "Fn + numbers to media keys",
|
||||
"manipulators": [
|
||||
{
|
||||
"from": {
|
||||
"key_code": "7",
|
||||
"modifiers": { "mandatory": ["fn"] }
|
||||
},
|
||||
"to": [
|
||||
{ "key_code": "rewind" }
|
||||
],
|
||||
"type": "basic"
|
||||
},
|
||||
{
|
||||
"from": {
|
||||
"key_code": "8",
|
||||
"modifiers": { "mandatory": ["fn"] }
|
||||
},
|
||||
"to": [
|
||||
{ "key_code": "play_or_pause" }
|
||||
],
|
||||
"type": "basic"
|
||||
},
|
||||
{
|
||||
"from": {
|
||||
"key_code": "9",
|
||||
"modifiers": { "mandatory": ["fn"] }
|
||||
},
|
||||
"to": [
|
||||
{ "key_code": "fastforward" }
|
||||
],
|
||||
"type": "basic"
|
||||
},
|
||||
{
|
||||
"from": {
|
||||
"key_code": "0",
|
||||
"modifiers": { "mandatory": ["fn"] }
|
||||
},
|
||||
"to": [
|
||||
{ "key_code": "mute" }
|
||||
],
|
||||
"type": "basic"
|
||||
},
|
||||
{
|
||||
"from": {
|
||||
"key_code": "hyphen",
|
||||
"modifiers": { "mandatory": ["fn"] }
|
||||
},
|
||||
"to": [
|
||||
{ "key_code": "volume_decrement" }
|
||||
],
|
||||
"type": "basic"
|
||||
},
|
||||
{
|
||||
"from": {
|
||||
"key_code": "equal_sign",
|
||||
"modifiers": { "mandatory": ["fn"] }
|
||||
},
|
||||
"to": [
|
||||
{ "key_code": "volume_increment" }
|
||||
],
|
||||
"type": "basic"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"description": "Change right option into hyper key",
|
||||
"manipulators": [
|
||||
|
||||
Loading…
Reference in New Issue
Block a user