30 lines
713 B
Markdown
30 lines
713 B
Markdown
# gui
|
|
|
|
This is the main source code for the custom UI used by PiFrame. This is responsible for things like restart, WiFi config, ensuring the slide show is running and more.
|
|
|
|
## Config
|
|
|
|
The GUI will work off a config similar to the following. Use the ```generate config``` option to generate a default configuration in ```/etc/default/pf.toml```
|
|
|
|
```
|
|
|
|
[slideshow]
|
|
slideinterval = "300s"
|
|
restartinterval = "7d"
|
|
|
|
[hdmi]
|
|
# These are SYSTEMD.TIME formatted times
|
|
# You probably want to just adjust the actual times here
|
|
# See https://www.freedesktop.org/software/systemd/man/systemd.time.html
|
|
off = "*-*-* 00:00:00"
|
|
on = "*-*-* 06:00:00"
|
|
|
|
[albums]
|
|
root = "/tank/pictures"
|
|
selected = [
|
|
"/",
|
|
"/KemoNine"
|
|
]
|
|
|
|
```
|