From 8893a1acc2d4d78a4a1c3b9d1ee47bc1503a0376 Mon Sep 17 00:00:00 2001 From: Akshay Date: Thu, 28 Nov 2019 22:30:06 +0530 Subject: add sample config --- examples/sample_config.toml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 examples/sample_config.toml 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 @@ +# mostly under ~/.config/xcursorlocate/ or ~/.xcursorlocate/ as +# xcursorlocate.toml. auto generated on first run. + +# the size of the largest circle in the indicator +max_size = 200 + +# duration in milliseconds. values less than 200 might lead to the indicator +# not being drawn on the screen at all +duration = 500 + +# the width of each circle in display pixels. +thickness = 1 + +# total circles displayed in the indicator. setting this to a value greater +# than max_size/thickness could lead to the indicator not being drawn at all. +no_of_circles = 7 + +# indicator color, set to hex (0xRRGGBB) or 32 bit int. +# alpha not supported (yet) +color = 0x00FECA + +# values: Grow, Shrink +animation = 'Shrink' -- cgit v1.2.3