Display HA dashboards in kiosk mode directly on your HAOS server.
Launches X-Windows on local HAOS server followed by OpenBox window manager
and Luakit browser.
Standard mouse and keyboard interactions should work automatically.
Supports touchscreens (including onscreen keyboard) and screen rotation.
Includes REST API that can be used to control the display state and to send
new URLs (e.g., dashboards) to the kiosk browser.
You can press ctl-R at any time to refresh the browser.
NOTE: You must enter your HA username and password in the Configuration tab for add-on to start.
NOTE: The add-on requires a valid, connected display in order to start.
If display does not show up, try rebooting and restarting the addon with
the display attached
Note: Luakit browser is launched in kiosk-like (passthrough) mode.
To enter normal mode (similar to command mode in vi), press
ctl-alt-esc.
You can then return to passthrough mode by pressing ctl-Z or enter
insert mode by pressing i.
See luakit documentation for available commands.
In general, you want to stay in passthrough mode.
NOTE: Should support any standard mouse, touchscreen, keypad and touchpad so long as their /dev/input/eventN number is less than 25.
NOTE: If not working, please first check the bug reports (open and closed), then try the testing branch (add the following url to the repository: https://github.com/puterboy/HAOS-kiosk#testing). If still no solution, file an issue on github bug report and include full details of your setup and what you did along with a complete log.
Enter your Home Assistant login name.
Enter your Home Assistant password.
Default: http://localhost:8123
In general, you shouldn't need to change this since this is running on the
local server.
Name of starting dashboard.
(Default: "" - loads the default Lovelace dashboard)
Delay in seconds to allow login page to load.
(Default: 1 second)
Level of zoom with 100 being 100%.
(Default: 100%)
Time between browser refreshes. Set to 0 to disable.
Recommended because with the default RPi config, console errors may
overwrite the dashboard.
(Default: 600 seconds)
Time before screen blanks in seconds. Set to 0 to never timeout.
(Default: 0 seconds - never timeout)
Choose which of the connected video output ports to use. Set to 1 to
use the first connected port. If selected number exceeds number of
connected ports, then use last valid connected port. (Default: 1)
NOTE: This should always be set to 1 unless you have more than one video
output device connected. If so, use the logs to see how they are numbered.
Prefer dark mode where supported if true (Default: true)
Presentation of left sidebar menu (device-specific).
Options include: (Default: None)
- Full (icons + names)
- Narrow (icons only)
- None (hidden)
Rotate the display relative to standard view.
Options include: (Default: Normal)
- Normal (No rotation)
- Left (Rotate 90 degrees clockwise)
- Right (Rotate 90 degrees counter-clockwise)
- Inverted (Rotate 180 degrees)
Map touch inputs to the selected video output, so that the touch devices get rotated consistently with the video output. (Default: True)
Time in seconds for cursor to be hidden after last mouse movement or touch.
Cursor will reappear when mouse moved or screen touched again. Set to 0
to always show cursor. Set to -1 to never show cursor. (Default: 5
seconds)
Set the keyboard layout and language. (Default: us)
Display an on-screen keyboard when keyboard input expected if set to
true. (Default: false)
To move, resize, or configure keyboard options, long press on the ...
within the Return key. You can also resize the keyboard by pressing and
dragging along the keyboard edges.
You can manually toggle keyboard visibility on/off by tapping extreme top right of screen.
See https://github.com/dr-ni/onboard for more details
Save and restore changes to onscreen keyboard settings made during each
session if set to true. Overwrites default settings. (Default: true)
Append to or replace existing, default xorg.conf file.
Select 'Append' or 'Replace options.
To restore default, set to empty and select 'Append' option.
Port used for the REST API. Must be between 1024 and 49151. (Default: 8080)
Note for security REST server only listens on localhost (127.0.0.1)
Optional authorization token for REST API. (Default: "") If set, then add
line Authorization: Bearer <REST_BEARER_TOKEN> to REST API calls.
Allow user to run arbitrary one or more commands in the HAOSkiosk container
via the respective REST APIs: run_command and run_commands (Default:
false)
Warning: Allowing this could allow the user to inject potentially dangerous root-level commands
For debugging purposes, launches Xorg and openbox and then sleeps
without launching luakit.
Manually, launch luakit (e.g.,
luakit -U localhost:8123/<your-dashboard>) from Docker container.
E.g., sudo docker exec -it addon_haoskiosk bash
Launch the specified 'url' in the kiosk display. Overwrites current active tab.
Usage:
curl -X POST http://localhost:<REST_PORT>/launch_url -H "Content-Type: application/json" -d '{"url": "<URL>"}'
Refresh browser
Usage:
curl -X POST http://localhost:<REST_PORT>/refresh_browser
Returns boolean depending on whether display is on or off.
Usage:
curl -X GET http://localhost:8080/is_display_on
Turn on display. If optional payload given, then set screen timeout to
<timeout> which if 0 means never turn off screen and if positive
integer then turn off screen after <timeout> seconds
Usage:
curl -X POST http://localhost:<REST_PORT>/display_on
curl -X POST http://localhost:8080/display_on -H "Content-Type: application/json" -d '{"timeout": <timeout>}
Turn off display
Usage:
curl -X POST http://localhost:<REST_PORT>/display_off
Run xset <args> to get/set display information. In particular, use -q
to get display information.
Usage:
curl -X POST http://localhost:<REST_PORT>/xset -H "Content-Type: application/json" -d '{"args": "<arg-string>"}'
Return number of currently running concurrent processes out of max allowed
Usage: curl -X GET http://localhost:8080/current_processes
Run command in the HAOSKiosk Docker container where cmd_timeout is an
optional timeout in seconds.
Only allowed if Allow User Commands option is set to true.
Usage:
curl -X POST http://localhost:<REST_PORT>/run_command -H "Content-Type: application/json" -d '{"cmd": "<command>", "cmd_timeout": <seconds>}'
Run multiple commands in the HAOSKiosk Docker container where cmd_timeout
is an optional timeout in seconds.
Only allowed if Allow User Commands option is set to true.
Usage:
curl -X POST http://localhost:<REST_PORT>/run_commands -H "Content-Type: application/json" -d '{"cmds": ["<command1>", "<command2>",...], "cmd_timeout": <seconds>}'
NOTE: The API commands logs results to the HAOSkiosk log and return:
{
"success": bool,
"result": {
"success": bool,
"stdout": str,
"stderr": str,
"error": str (optional)
}
}
Note that run_commands returns an array of "results" of form:
"results": [{"success": bool, "stdout": str, "stderr": str, "error": str (optional)},...]
You can format the stdout (and similarly stderr) by piping the output to:
jq -r .result.stdout
In the case of run_commands, pipe the output to:
jq -r '.results[]?.stdout'
You can also configure all the above REST commands in your
configuration.yaml as follows (assuming REST_PORT=8080)
rest_command:
haoskiosk_launch_url:
url: "http://localhost:8080/launch_url"
method: POST
content_type: "application/json"
payload: '{"url": "{{ url }}"}'
haoskiosk_refresh_browser:
url: "http://localhost:8080/refresh_browser"
method: POST
content_type: "application/json"
payload: "{}"
haoskiosk_is_display_on:
url: "http://localhost:8080/is_display_on"
method: GET
content_type: "application/json"
haoskiosk_display_on:
url: "http://localhost:8080/display_on"
method: POST
content_type: "application/json"
payload: '{% if timeout is defined and timeout is number and timeout >= 0 %}{"timeout": {{ timeout | int }}}{% else %}{}{% endif %}'
haoskiosk_display_off:
url: "http://localhost:8080/display_off"
method: POST
content_type: "application/json"
payload: "{}"
haoskiosk_current_processes:
url: "http://localhost:8080/current_processes"
method: GET
content_type: "application/json"
haoskiosk_xset:
url: "http://localhost:8080/xset"
method: POST
content_type: "application/json"
payload: '{"args": "{{ args }}"}'
haoskiosk_run_command:
url: "http://localhost:8080/run_command"
method: POST
content_type: "application/json"
payload: '{% if cmd_timeout is defined and cmd_timeout is number and cmd_timeout > 0 %}{"cmd": "{{ cmd }}", "cmd_timeout": {{ cmd_timeout | int }}}{% else %}{"cmd": "{{ cmd }}"}{% endif %}'
haoskiosk_run_commands:
url: "http://localhost:8080/run_commands"
method: POST
content_type: "application/json"
payload: '{% if cmd_timeout is defined and cmd_timeout is number and cmd_timeout > 0 %}{"cmds": {{ cmds | tojson }}, "cmd_timeout": {{ cmd_timeout | int }}}{% else %}{"cmds": {{ cmds | tojson }}}{% endif %}'
Note if optional `REST_BEARER_TOKEN~ is set, then add the following two authentication lines to each of the above stanzas:
headers:
Authorization: Bearer <REST_BEARER_TOKEN>
The rest commands can then be referenced from automation actions as:
rest_command.haoskiosk_<command-name>
For example:
actions:
- action: rest_command.haoskiosk_launch_url
data:
url: "https://homeassistant.local/my_dashboard"
- action: rest_command.haoskiosk_refresh_browser
- action: rest_command.haoskiosk_is_display_on
- action: rest_command.haoskiosk_display_on
- action: rest_command.haoskiosk_display_on
data:
timeout: 300
- action: rest_command.haoskiosk_display_off
- action: rest_command.haoskiosk_current_processes
- action: rest_command.haoskiosk_xset
data:
args: "<arg-string>"
- action: rest_command.haoskiosk_run_command
data:
cmd: "command"
cmd_timeout: <seconds>
- action: rest_command.haoskiosk_run_commands
data:
cmds:
- "<command1>"
- "<command2>"
...
cmd_timeout: <seconds>
-
Create automations and services to:
-
Turn on/off display based on time-of-day, proximity, event triggers, voice commands, etc.
See 'examples' folder for trigger based on ultrasonic distance and HA boolean sensor.
-
Send dashboard or other url to HAOSKiosk display based on event triggers or pre-programmed rotation (e.g., to sequentially view different cameras).
-
Create simple screensavers using a loop to iterate through an image folder and call
launch_urlSee 'examples' folder for simple Bash script example screensaver.
-
-
Use custom command(s) to change internal parameters of HAOSKiosk and the luakit browser configuration.
