Added config example
This commit is contained in:
parent
ba976d9e12
commit
190ed0639a
2 changed files with 58 additions and 7 deletions
53
config.toml
Normal file
53
config.toml
Normal file
|
@ -0,0 +1,53 @@
|
|||
# This is the default config for Aliveline.
|
||||
# Note: All colors are of format 0xAARRGGBB
|
||||
|
||||
# Path where logs are saved. May be relative to config dir or absolute.
|
||||
log_path = "logs"
|
||||
|
||||
# Colors used for events. For now Aliveline expects to have exactly 16 colors, but this is subject to change in future.
|
||||
event_colors = [
|
||||
0xff_97f9f9,
|
||||
0xff_a4def9,
|
||||
0xff_c1e0f7,
|
||||
0xff_cfbae1,
|
||||
0xff_c59fc9,
|
||||
0xff_4e3d42,
|
||||
0xff_c9d5b5,
|
||||
0xff_2d82b7,
|
||||
0xff_556f44,
|
||||
0xff_772e25,
|
||||
0xff_c44536,
|
||||
0xff_7c6a0a,
|
||||
0xff_babd8d,
|
||||
0xff_ffdac6,
|
||||
0xff_fa9500,
|
||||
0xff_eb6424
|
||||
]
|
||||
|
||||
# Colors used for event colors. Aliveline expects it to have same size as events.
|
||||
text_colors = [
|
||||
0xff_000000,
|
||||
0xff_000000,
|
||||
0xff_000000,
|
||||
0xff_000000,
|
||||
0xff_000000,
|
||||
0xff_ffffff,
|
||||
0xff_000000,
|
||||
0xff_000000,
|
||||
0xff_000000,
|
||||
0xff_ffffff,
|
||||
0xff_000000,
|
||||
0xff_000000,
|
||||
0xff_000000,
|
||||
0xff_000000,
|
||||
0xff_000000,
|
||||
0xff_000000
|
||||
]
|
||||
|
||||
[colors]
|
||||
# Color behind the timeline
|
||||
background = 0xFF_808080
|
||||
# Color of the base timeline
|
||||
timeline = 0xFF_a9a9a9
|
||||
# Color of background text (timestamps, event names, etc.)
|
||||
background_text = 0xFF_000000
|
Loading…
Add table
Add a link
Reference in a new issue