Mention how to toggle it on/off when repeating forever

Fixes #20
pull/21/head
Martin Tournoij 4 years ago
parent 1f32dd7238
commit 9ed9ec581c
No known key found for this signature in database
GPG Key ID: A6258419189EE585

@ -45,6 +45,16 @@ manager to launch `find-cursor` with that.
I don't have a numpad on my keyboard; you can also use `F13` or some other
unused key.
You can use a little wrapper script if you want a "toggle" switch for when
repeating forever:
#!/bin/sh
if pgrep find-cursor; then
pkill find-cursor
else
find-cursor -r0 &
fi
Compton
-------

Loading…
Cancel
Save