Compare commits

...

2 Commits

Author SHA1 Message Date
3218ceada1 move config 2026-02-04 02:35:42 -08:00
dca8f0df32 update 2026-02-04 02:14:03 -08:00
2 changed files with 106 additions and 30 deletions

View File

@@ -0,0 +1,43 @@
{
"attribution": {
"commit": "",
"pr": ""
},
"permissions": {
"deny": [
"Read(.env)",
"Read(~/.aws/**)"
]
},
"hooks": {
"Notification": [
{
"matcher": "",
"hooks": [
{
"type": "command",
"command": "notify-send 'Claude Code' 'Claude Code needs your attention'"
}
]
}
]
},
"enabledPlugins": {
"pyright-lsp@claude-plugins-official": true,
"typescript-lsp@claude-plugins-official": true,
"clangd-lsp@claude-plugins-official": true
},
"sandbox": {
"enabled": false,
"autoAllowBashIfSandboxed": true,
"network": {
"allowUnixSockets": [
"/var/run/docker.sock"
],
"allowLocalBinding": true
},
"excludedCommands": [
"docker"
]
}
}

View File

@@ -1,59 +1,69 @@
{ {
"subtitlePosition": { "subtitlePosition": {
"yPercent": 16.541882109617372, "yPercent": 17.38459152016546
}, },
"keybindings": [ "keybindings": [
{ {
"key": "Space", "key": "Space",
"command": ["cycle", "pause"], "command": [
"cycle",
"pause"
]
}, },
{ {
"key": "ArrowRight", "key": "ArrowRight",
"command": ["seek", 5], "command": [
"seek",
5
]
}, },
{ {
"key": "ArrowLeft", "key": "ArrowLeft",
"command": ["seek", -5], "command": [
"seek",
-5
]
}, },
{ {
"key": "Ctrl+Shift+KeyN", "key": "ArrowRight",
"command": ["script-binding", "mpvacious-export-note"], "command": [
"seek",
5
]
}, },
{ {
"key": "Ctrl+Shift+KeyV", "key": "ArrowUp",
"command": ["script-binding", "mpvacious-secondary-sid-toggle"], "command": [
"seek",
60
]
}, },
{ {
"key": "Shift+KeyL", "key": "ArrowDown",
"command": ["script-binding", "mpvacious-sub-seek-forward"], "command": [
}, "seek",
{ -60
"key": "Shift+KeyH", ]
"command": ["script-binding", "mpvacious-sub-seek-back"],
},
{
"key": "Ctrl+Shift+KeyH",
"command": ["script-binding", "mpvacious-sub-replay"],
},
{
"key": "Ctrl+Shift+KeyL",
"command": ["script-binding", "mpvacious-sub-play-up-to-next"],
}, },
{ {
"key": "KeyQ", "key": "KeyQ",
"command": ["quit"], "command": [
"quit"
]
}, },
{ {
"key": "Ctrl+KeyW", "key": "Ctrl+KeyW",
"command": ["quit"], "command": [
}, "quit"
]
}
], ],
"texthooker": { "texthooker": {
"openBrowser": false, "openBrowser": false
}, },
"websocket": { "websocket": {
"enabled": "auto", "enabled": "auto",
"port": 6677, "port": 6677
}, },
"ankiConnect": { "ankiConnect": {
"enabled": true, "enabled": true,
@@ -84,6 +94,28 @@
"sentenceCardSentenceField": "Sentence", "sentenceCardSentenceField": "Sentence",
"sentenceCardAudioField": "SentenceAudio", "sentenceCardAudioField": "SentenceAudio",
"isLapis": true, "isLapis": true,
"mediaInsertMode": "append",
"auto_start_overlay": false,
"secondarySub": {
"autoLoadSecondarySub": true,
"secondarySubLanguages": [
"en",
"eng"
]
}
},
"subtitleStyle": {
"ontFamily": "Noto Sans CJK JP Regular, Noto Sans CJK JP, Arial Unicode MS, Arial, sans-serif",
"fontSize": 35,
"fontColor": "#cad3f5",
"fontWeight": "normal",
"fontStyle": "normal",
"backgroundColor": "rgb(30, 32, 48, 0.88)",
"secondary": {
"fontSize": 24,
"fontColor": "#cad3f5",
"backgroundColor": "transparent"
}
}, },
"shortcuts": { "shortcuts": {
"copySubtitle": "CommandOrControl+C", "copySubtitle": "CommandOrControl+C",
@@ -91,6 +123,7 @@
"updateLastCardFromClipboard": "CommandOrControl+V", "updateLastCardFromClipboard": "CommandOrControl+V",
"mineSentence": "CommandOrControl+S", "mineSentence": "CommandOrControl+S",
"mineSentenceMultiple": "CommandOrControl+Shift+S", "mineSentenceMultiple": "CommandOrControl+Shift+S",
"multiCopyTimeoutMs": 3000, "toggleSecondarySub": "CommandOrControl+Shift+V",
}, "multiCopyTimeoutMs": 3000
} }
}