├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── find-cursor.c └── screenshot.gif /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: arp242 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /find-cursor 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arp242/find-cursor/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arp242/find-cursor/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arp242/find-cursor/HEAD/README.md -------------------------------------------------------------------------------- /find-cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arp242/find-cursor/HEAD/find-cursor.c -------------------------------------------------------------------------------- /screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arp242/find-cursor/HEAD/screenshot.gif --------------------------------------------------------------------------------