-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# OVOS GUI MessageBus | ||
|
||
GUI messagebus service, manages GUI state and implements the [gui protocol]() | ||
|
||
GUI clients (the application that actually draws the GUI) connect to this service | ||
|
||
|
||
# Configuration | ||
|
||
under mycroft.conf | ||
|
||
```javascript | ||
{ | ||
"gui": { | ||
// Override: SYSTEM (set by specific enclosures) | ||
// Uncomment or add "idle_display_skill" to set initial homescreen | ||
// "idle_display_skill": "skill-ovos-homescreen.openvoiceos", | ||
|
||
// Extensions provide additional GUI platform support for specific devices | ||
// Currently supported devices: smartspeaker, bigscreen or generic | ||
"extension": "generic", | ||
|
||
// Generic extension can additionaly provide homescreen functionality | ||
// homescreen support is disabled by default for generic extension | ||
"generic": { | ||
"homescreen_supported": false | ||
} | ||
}, | ||
|
||
// The GUI messagebus websocket. Once port is created per connected GUI | ||
"gui_websocket": { | ||
"host": "0.0.0.0", | ||
"base_port": 18181, | ||
"route": "/gui", | ||
"ssl": false | ||
} | ||
} | ||
``` |