26 lines
455 B
TOML
26 lines
455 B
TOML
activationPhrase = "trident"
|
|
activationTime = "10s"
|
|
ipcEnabled = true
|
|
|
|
[[action]]
|
|
name = "dismiss"
|
|
type = "noop"
|
|
phrase = "dismiss"
|
|
|
|
[[action]]
|
|
name = "open"
|
|
type = "shell"
|
|
phrase = "open (?P<program>.+)"
|
|
input = "$program"
|
|
|
|
[[action]]
|
|
name = "time"
|
|
type = "time"
|
|
phrase = "what time is it|what is the time"
|
|
|
|
[[action]]
|
|
name = "ask"
|
|
type = "wolframalpha"
|
|
phrase = "calculate (?P<question>.+)"
|
|
input = '$question'
|
|
data = {"appid" = "someWolframAlphaAppID"} |