aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkshay <[email protected]>2019-11-28 17:00:06 +0000
committerAkshay <[email protected]>2019-11-28 17:00:06 +0000
commit8893a1acc2d4d78a4a1c3b9d1ee47bc1503a0376 (patch)
treeb937d646720f0f62ffca49668c688aa3125b1b37
parent6d660c2f72c0651b78fbe8763f526c8cc48fb52f (diff)
add sample config
-rw-r--r--examples/sample_config.toml23
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
5max_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
9duration = 500
10
11# the width of each circle in display pixels.
12thickness = 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.
16no_of_circles = 7
17
18# indicator color, set to hex (0xRRGGBB) or 32 bit int.
19# alpha not supported (yet)
20color = 0x00FECA
21
22# values: Grow, Shrink
23animation = 'Shrink'