Karabiner: Added config
This commit is contained in:
parent
669935cb7d
commit
5996e6116e
62
.config/karabiner/karabiner.json
Normal file
62
.config/karabiner/karabiner.json
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
{
|
||||||
|
"profiles": [
|
||||||
|
{
|
||||||
|
"complex_modifications": {
|
||||||
|
"rules": [
|
||||||
|
{
|
||||||
|
"description": "Play/Pause controls spotify only when it's running",
|
||||||
|
"manipulators": [
|
||||||
|
{
|
||||||
|
"from": { "key_code": "f8" },
|
||||||
|
"to": [
|
||||||
|
{
|
||||||
|
"halt": true,
|
||||||
|
"repeat": false,
|
||||||
|
"shell_command": "osascript ~/.config/karabiner/scripts/spotify_playpause.scpt"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"type": "basic"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"description": "Caps Lock → Hyper Key without Shift (⌃⌥⌘)",
|
||||||
|
"manipulators": [
|
||||||
|
{
|
||||||
|
"from": { "key_code": "caps_lock" },
|
||||||
|
"to": [
|
||||||
|
{
|
||||||
|
"key_code": "left_command",
|
||||||
|
"modifiers": ["left_control", "left_option"]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"to_if_alone": [{ "key_code": "caps_lock" }],
|
||||||
|
"type": "basic"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"devices": [
|
||||||
|
{
|
||||||
|
"identifiers": {
|
||||||
|
"is_keyboard": true,
|
||||||
|
"is_pointing_device": true,
|
||||||
|
"product_id": 45091,
|
||||||
|
"vendor_id": 1133
|
||||||
|
},
|
||||||
|
"ignore": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"name": "Default profile",
|
||||||
|
"selected": true,
|
||||||
|
"simple_modifications": [
|
||||||
|
{
|
||||||
|
"from": { "consumer_key_code": "play_or_pause" },
|
||||||
|
"to": [{ "key_code": "vk_none" }]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"virtual_hid_keyboard": { "keyboard_type_v2": "iso" }
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
6
.config/karabiner/scripts/spotify_playpause.scpt
Normal file
6
.config/karabiner/scripts/spotify_playpause.scpt
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
-- If Spotify is running, toggle play/pause. Otherwise do nothing
|
||||||
|
if application "Spotify" is running then
|
||||||
|
using terms from application "Spotify"
|
||||||
|
tell application "Spotify" to playpause
|
||||||
|
end using terms from
|
||||||
|
end if
|
Loading…
Reference in New Issue
Block a user