2.1. Show/Hide web UI elements
The OliveTin web UI is reasonably customizable - parts of the page that you don’t need can be hidden when they’re not needed.
2.1.1. Show Navigation
You can choose to hide the navigation elements in OliveTin, to present a simplified user interface.

To have OliveTin hide these buttons, add showNavigation: false
to your config.yaml;
config.yaml
logLevel: "INFO" showNavigation: false actions: ....

showNavigation: false
)2.1.2. Show new versions
You can disable the "new version" information in the footer - the default for showNewVersions
is true
;
config.yaml
logLevel: "INFO" showNewVersions: false
If disabled, OliveTin will still check for new versions in the background, but will not display them on the page. If you want to disable update checking completely, see disable update checking.
2.1.3. Show the footer
You can disable the entire footer, if you would like a really minimal interface. The default for showFooter
is true
.
config.yaml
logLevel: "INFO" showFooter: false
This means the showNewVersions
configuration option will automatically be false
as well.