14 lines
403 B
Lua
14 lines
403 B
Lua
|
|
local helper = jarvis.context.command_path .. "\\_media_helper.ps1"
|
||
|
|
local cmd = string.format(
|
||
|
|
'powershell -NoProfile -ExecutionPolicy Bypass -File "%s" -Action next',
|
||
|
|
helper
|
||
|
|
)
|
||
|
|
local res = jarvis.system.exec(cmd)
|
||
|
|
if res.success then
|
||
|
|
jarvis.audio.play_ok()
|
||
|
|
else
|
||
|
|
jarvis.log("error", "media next failed: " .. tostring(res.stderr))
|
||
|
|
jarvis.audio.play_error()
|
||
|
|
end
|
||
|
|
return { chain = false }
|