local cmd_id = jarvis.context.command_id local lang = jarvis.context.language local uris = { open_wifi_settings = "ms-settings:network-wifi", open_bluetooth_settings = "ms-settings:bluetooth", } local uri = uris[cmd_id] or "ms-settings:network" jarvis.system.open(uri) jarvis.system.notify( cmd_id == "open_wifi_settings" and "Wi-Fi" or "Bluetooth", lang == "ru" and "Открываю настройки" or "Opening settings" ) jarvis.audio.play_ok() return { chain = false }