10 lines
272 B
Lua
10 lines
272 B
Lua
|
|
local cmd = "start \"\" \"https://www.google.com\""
|
||
|
|
local res = jarvis.system.exec(cmd)
|
||
|
|
if res.success then
|
||
|
|
jarvis.audio.play_ok()
|
||
|
|
else
|
||
|
|
jarvis.log("error", "open browser failed: " .. tostring(res.stderr))
|
||
|
|
jarvis.audio.play_error()
|
||
|
|
end
|
||
|
|
return { chain = false }
|