69 lines
1.3 KiB
TOML
69 lines
1.3 KiB
TOML
|
|
# Bedtime / wake-up routines — bundle several actions into one voice trigger.
|
||
|
|
# These are the Jarvis equivalents of Alexa "routines": one phrase, many
|
||
|
|
# side-effects.
|
||
|
|
|
||
|
|
[[commands]]
|
||
|
|
id = "routines.good_night"
|
||
|
|
type = "lua"
|
||
|
|
script = "good_night.lua"
|
||
|
|
sandbox = "full"
|
||
|
|
timeout = 8000
|
||
|
|
|
||
|
|
[commands.phrases]
|
||
|
|
ru = [
|
||
|
|
"спокойной ночи",
|
||
|
|
"иду спать",
|
||
|
|
"пока я в кровати",
|
||
|
|
"ночной режим",
|
||
|
|
"выключи всё на ночь",
|
||
|
|
]
|
||
|
|
en = [
|
||
|
|
"good night",
|
||
|
|
"i'm going to bed",
|
||
|
|
"bedtime mode",
|
||
|
|
"shut down for the night",
|
||
|
|
]
|
||
|
|
|
||
|
|
|
||
|
|
[[commands]]
|
||
|
|
id = "routines.good_morning"
|
||
|
|
type = "lua"
|
||
|
|
script = "good_morning.lua"
|
||
|
|
sandbox = "full"
|
||
|
|
timeout = 8000
|
||
|
|
|
||
|
|
[commands.phrases]
|
||
|
|
ru = [
|
||
|
|
"доброе утро джарвис",
|
||
|
|
"доброе утро",
|
||
|
|
"я проснулся",
|
||
|
|
"начинаем день",
|
||
|
|
]
|
||
|
|
en = [
|
||
|
|
"good morning",
|
||
|
|
"i'm awake",
|
||
|
|
"start the day",
|
||
|
|
]
|
||
|
|
|
||
|
|
|
||
|
|
[[commands]]
|
||
|
|
id = "routines.coffee_break"
|
||
|
|
type = "lua"
|
||
|
|
script = "coffee_break.lua"
|
||
|
|
sandbox = "full"
|
||
|
|
timeout = 5000
|
||
|
|
|
||
|
|
[commands.phrases]
|
||
|
|
ru = [
|
||
|
|
"иду за кофе",
|
||
|
|
"перерыв на кофе",
|
||
|
|
"перерыв на чай",
|
||
|
|
"отойду минут на пять",
|
||
|
|
]
|
||
|
|
en = [
|
||
|
|
"going for coffee",
|
||
|
|
"coffee break",
|
||
|
|
"back in 5",
|
||
|
|
"afk five minutes",
|
||
|
|
]
|