Windowsでは「Windows+Shift+S」でスクリーンショットを撮ってクリップボードに保存しますが それにならって(Option+Shift+S)でクリップボードにスクリーンショットを保存。
(Option+Shift+S)→(Command+Control+Shift+4)
complex_modifications フォルダに screenshot_shortcuts.json で保存して「Comples Modifications」から呼び出します。
{
"title": "screenshot shortcuts",
"rules": [
{
"description": "【スクリーンショット】Option+Shift+ S を Command+Control+shift+4 に変換する",
"manipulators": [
{
"from": {
"key_code": "s",
"modifiers": { "mandatory": [ "option","shift" ] }
},
"to": [
{
"key_code": "4",
"modifiers": ["command","control","shift"]
}
],
"type": "basic"
}
]
}
]
}