All checks were successful
dustin/basementhud/pipeline/head This commit looks good
The `mqttdpms` tool will allow the screens to be turned off and on using Home Assistant. We'll install it into the rootfs image by copying the artifact from its Jenkins build into the overlay tree before building the image.
13 lines
219 B
Bash
13 lines
219 B
Bash
#!/bin/sh
|
|
|
|
xset s off
|
|
xset -dpms
|
|
|
|
TZ="$(curl https://ipapi.co/timezone)"
|
|
export TZ
|
|
|
|
systemctl --user import-environment DISPLAY TZ
|
|
systemctl --user start firefox-marionette.socket firefox mqttdpms
|
|
|
|
exec openbox-session
|