38 lines
897 B
TOML
38 lines
897 B
TOML
|
|
# Notification queue — records what Jarvis said while you were away.
|
||
|
|
# Used by scheduler/macros/llm to log fired events; speak the digest on demand.
|
||
|
|
|
||
|
|
[[commands]]
|
||
|
|
id = "notif.what_missed"
|
||
|
|
type = "lua"
|
||
|
|
script = "missed.lua"
|
||
|
|
sandbox = "standard"
|
||
|
|
timeout = 5000
|
||
|
|
|
||
|
|
[commands.phrases]
|
||
|
|
ru = [
|
||
|
|
"что я пропустил",
|
||
|
|
"что было пока меня не было",
|
||
|
|
"какие уведомления",
|
||
|
|
"пропущенные",
|
||
|
|
"что нового",
|
||
|
|
]
|
||
|
|
en = ["what did I miss", "missed notifications"]
|
||
|
|
ua = ["що я пропустив"]
|
||
|
|
|
||
|
|
|
||
|
|
[[commands]]
|
||
|
|
id = "notif.clear"
|
||
|
|
type = "lua"
|
||
|
|
script = "clear.lua"
|
||
|
|
sandbox = "minimal"
|
||
|
|
timeout = 2000
|
||
|
|
|
||
|
|
[commands.phrases]
|
||
|
|
ru = [
|
||
|
|
"очисти уведомления",
|
||
|
|
"забудь уведомления",
|
||
|
|
"сбрось пропущенное",
|
||
|
|
]
|
||
|
|
en = ["clear notifications"]
|
||
|
|
ua = ["очисти сповіщення"]
|