diff options
author | Akshay <[email protected]> | 2019-11-28 17:00:06 +0000 |
---|---|---|
committer | Akshay <[email protected]> | 2019-11-28 17:00:06 +0000 |
commit | 8893a1acc2d4d78a4a1c3b9d1ee47bc1503a0376 (patch) | |
tree | b937d646720f0f62ffca49668c688aa3125b1b37 /examples | |
parent | 6d660c2f72c0651b78fbe8763f526c8cc48fb52f (diff) |
add sample config
Diffstat (limited to 'examples')
-rw-r--r-- | examples/sample_config.toml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/examples/sample_config.toml b/examples/sample_config.toml new file mode 100644 index 0000000..fdf2883 --- /dev/null +++ b/examples/sample_config.toml | |||
@@ -0,0 +1,23 @@ | |||
1 | # mostly under ~/.config/xcursorlocate/ or ~/.xcursorlocate/ as | ||
2 | # xcursorlocate.toml. auto generated on first run. | ||
3 | |||
4 | # the size of the largest circle in the indicator | ||
5 | max_size = 200 | ||
6 | |||
7 | # duration in milliseconds. values less than 200 might lead to the indicator | ||
8 | # not being drawn on the screen at all | ||
9 | duration = 500 | ||
10 | |||
11 | # the width of each circle in display pixels. | ||
12 | thickness = 1 | ||
13 | |||
14 | # total circles displayed in the indicator. setting this to a value greater | ||
15 | # than max_size/thickness could lead to the indicator not being drawn at all. | ||
16 | no_of_circles = 7 | ||
17 | |||
18 | # indicator color, set to hex (0xRRGGBB) or 32 bit int. | ||
19 | # alpha not supported (yet) | ||
20 | color = 0x00FECA | ||
21 | |||
22 | # values: Grow, Shrink | ||
23 | animation = 'Shrink' | ||