24 lines
624 B
TOML
24 lines
624 B
TOML
|
|
# Windows Media Session — what's currently playing.
|
||
|
|
# Uses Windows.Media.Control.GlobalSystemMediaTransportControlsSessionManager
|
||
|
|
# via PowerShell. Works with Spotify, YouTube, Foobar, Yandex Music, anything
|
||
|
|
# that exposes SMTC.
|
||
|
|
|
||
|
|
[[commands]]
|
||
|
|
id = "now_playing"
|
||
|
|
type = "lua"
|
||
|
|
script = "now.lua"
|
||
|
|
sandbox = "full"
|
||
|
|
timeout = 8000
|
||
|
|
|
||
|
|
[commands.phrases]
|
||
|
|
ru = [
|
||
|
|
"что играет",
|
||
|
|
"что сейчас играет",
|
||
|
|
"что за музыка",
|
||
|
|
"что за песня",
|
||
|
|
"какой трек",
|
||
|
|
"какая песня",
|
||
|
|
"что слушаю",
|
||
|
|
]
|
||
|
|
en = ["what's playing", "current song", "now playing"]
|