53 lines
1.1 KiB
TOML
53 lines
1.1 KiB
TOML
|
|
# Focus mode — combines three things real Jarvis would do for a deep-work session:
|
||
|
|
# 1. switch active profile to "work" (mutes the noise commands)
|
||
|
|
# 2. enable Windows Focus Assist via PowerShell
|
||
|
|
# 3. schedule a break reminder for 50 minutes (with 10-min stretch reminder)
|
||
|
|
# All in one voice trigger.
|
||
|
|
|
||
|
|
[[commands]]
|
||
|
|
id = "focus.start"
|
||
|
|
type = "lua"
|
||
|
|
script = "start.lua"
|
||
|
|
sandbox = "full"
|
||
|
|
timeout = 5000
|
||
|
|
|
||
|
|
[commands.phrases]
|
||
|
|
ru = [
|
||
|
|
"режим фокуса",
|
||
|
|
"включи фокус",
|
||
|
|
"сосредоточиться",
|
||
|
|
"не отвлекай",
|
||
|
|
"режим работы",
|
||
|
|
"хочу поработать",
|
||
|
|
]
|
||
|
|
en = [
|
||
|
|
"focus mode",
|
||
|
|
"enable focus",
|
||
|
|
"do not disturb",
|
||
|
|
"deep work",
|
||
|
|
"let me focus",
|
||
|
|
]
|
||
|
|
|
||
|
|
|
||
|
|
[[commands]]
|
||
|
|
id = "focus.stop"
|
||
|
|
type = "lua"
|
||
|
|
script = "stop.lua"
|
||
|
|
sandbox = "full"
|
||
|
|
timeout = 5000
|
||
|
|
|
||
|
|
[commands.phrases]
|
||
|
|
ru = [
|
||
|
|
"выключи фокус",
|
||
|
|
"выключи режим фокуса",
|
||
|
|
"закончил работать",
|
||
|
|
"отключи не отвлекай",
|
||
|
|
"верни обычный режим",
|
||
|
|
]
|
||
|
|
en = [
|
||
|
|
"exit focus",
|
||
|
|
"stop focus",
|
||
|
|
"disable focus",
|
||
|
|
"i'm done working",
|
||
|
|
]
|