diff options
Diffstat (limited to 'examples')
-rw-r--r-- | examples/sample_config.toml | 9 |
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. |
12 | thickness = 1 | 12 | thickness = 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 |
16 | no_of_circles = 7 | 16 | # (it can't draw 200 frames in 500 millis dude) |
17 | framerate = 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) |
20 | color = 0x00FECA | 21 | color = 0x00FECA |
21 | 22 | ||
22 | # values: Grow, Shrink | 23 | # values: Grow, Shrink, GrowOutline, ShrinkOutline |
23 | animation = 'Shrink' | 24 | animation = 'Shrink' |