28 lines
542 B
TOML
28 lines
542 B
TOML
|
[server]
|
||
|
# Include the scheme in the url, eg. "https://" or "http://"
|
||
|
url = ""
|
||
|
port = 443
|
||
|
|
||
|
[images]
|
||
|
# Image settings are arrays, this enables you to generate multiple images with
|
||
|
# different settings at the same time.
|
||
|
|
||
|
# Traccar Device ID
|
||
|
deviceId = [1]
|
||
|
|
||
|
# Output Image Size
|
||
|
size = [[1920,1080]]
|
||
|
|
||
|
# Valid values from from & to are: "now", "-hour", "-day", "-week", "-month", "-quarter"
|
||
|
from = ["-month"]
|
||
|
to = ["now"]
|
||
|
|
||
|
# Output Image Style
|
||
|
style = ["circles"]
|
||
|
|
||
|
format = "png"
|
||
|
|
||
|
[files]
|
||
|
destDir = "/var/wallpapers/map-dots"
|
||
|
|