aboutsummaryrefslogtreecommitdiff
path: root/examples/sample_config.toml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/sample_config.toml')
-rw-r--r--examples/sample_config.toml9
1 files changed, 5 insertions, 4 deletions
diff --git a/examples/sample_config.toml b/examples/sample_config.toml
index fdf2883..6b906be 100644
--- a/examples/sample_config.toml
+++ b/examples/sample_config.toml
@@ -11,13 +11,14 @@ duration = 500
11# the width of each circle in display pixels. 11# the width of each circle in display pixels.
12thickness = 1 12thickness = 1
13 13
14# total circles displayed in the indicator. setting this to a value greater 14# number of frames in the animation
15# than max_size/thickness could lead to the indicator not being drawn at all. 15# could result in choppy animations if you set it very high
16no_of_circles = 7 16# (it can't draw 200 frames in 500 millis dude)
17framerate = 30
17 18
18# indicator color, set to hex (0xRRGGBB) or 32 bit int. 19# indicator color, set to hex (0xRRGGBB) or 32 bit int.
19# alpha not supported (yet) 20# alpha not supported (yet)
20color = 0x00FECA 21color = 0x00FECA
21 22
22# values: Grow, Shrink 23# values: Grow, Shrink, GrowOutline, ShrinkOutline
23animation = 'Shrink' 24animation = 'Shrink'