├── .gitignore ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── make.sh ├── mocu.png └── src ├── aliases.txt ├── names.txt ├── svg ├── alias.svg ├── all-scroll.svg ├── bottom_tee.svg ├── cell.svg ├── center_ptr.svg ├── col-resize.svg ├── color-picker.svg ├── context-menu.svg ├── copy.svg ├── crosshair.svg ├── default.svg ├── dnd-ask.svg ├── dnd-copy.svg ├── dnd-link.svg ├── dnd-no-drop.svg ├── dot.svg ├── dotbox.svg ├── down-arrow.svg ├── e-resize.svg ├── ew-resize.svg ├── grab.svg ├── grabbing.svg ├── help.svg ├── left-arrow.svg ├── left_tee.svg ├── ll_angle.svg ├── lr_angle.svg ├── n-resize.svg ├── ne-resize.svg ├── nesw-resize.svg ├── no-drop.svg ├── not-allowed.svg ├── ns-resize.svg ├── nw-resize.svg ├── nwse-resize.svg ├── pencil.svg ├── pointer.svg ├── progress.svg ├── progress.txt ├── right-arrow.svg ├── right_ptr.svg ├── right_tee.svg ├── row-resize.svg ├── s-resize.svg ├── se-resize.svg ├── sw-resize.svg ├── text.svg ├── top_tee.svg ├── ul_angle.svg ├── up-arrow.svg ├── ur_angle.svg ├── vertical-text.svg ├── w-resize.svg ├── wait.svg ├── wait.txt ├── x-cursor.svg ├── zoom-in.svg └── zoom-out.svg └── themes.txt /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | tmp/ 3 | *.zip 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/README.md -------------------------------------------------------------------------------- /make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/make.sh -------------------------------------------------------------------------------- /mocu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/mocu.png -------------------------------------------------------------------------------- /src/aliases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/aliases.txt -------------------------------------------------------------------------------- /src/names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/names.txt -------------------------------------------------------------------------------- /src/svg/alias.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/alias.svg -------------------------------------------------------------------------------- /src/svg/all-scroll.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/all-scroll.svg -------------------------------------------------------------------------------- /src/svg/bottom_tee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/bottom_tee.svg -------------------------------------------------------------------------------- /src/svg/cell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/cell.svg -------------------------------------------------------------------------------- /src/svg/center_ptr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/center_ptr.svg -------------------------------------------------------------------------------- /src/svg/col-resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/col-resize.svg -------------------------------------------------------------------------------- /src/svg/color-picker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/color-picker.svg -------------------------------------------------------------------------------- /src/svg/context-menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/context-menu.svg -------------------------------------------------------------------------------- /src/svg/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/copy.svg -------------------------------------------------------------------------------- /src/svg/crosshair.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/crosshair.svg -------------------------------------------------------------------------------- /src/svg/default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/default.svg -------------------------------------------------------------------------------- /src/svg/dnd-ask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/dnd-ask.svg -------------------------------------------------------------------------------- /src/svg/dnd-copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/dnd-copy.svg -------------------------------------------------------------------------------- /src/svg/dnd-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/dnd-link.svg -------------------------------------------------------------------------------- /src/svg/dnd-no-drop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/dnd-no-drop.svg -------------------------------------------------------------------------------- /src/svg/dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/dot.svg -------------------------------------------------------------------------------- /src/svg/dotbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/dotbox.svg -------------------------------------------------------------------------------- /src/svg/down-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/down-arrow.svg -------------------------------------------------------------------------------- /src/svg/e-resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/e-resize.svg -------------------------------------------------------------------------------- /src/svg/ew-resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/ew-resize.svg -------------------------------------------------------------------------------- /src/svg/grab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/grab.svg -------------------------------------------------------------------------------- /src/svg/grabbing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/grabbing.svg -------------------------------------------------------------------------------- /src/svg/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/help.svg -------------------------------------------------------------------------------- /src/svg/left-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/left-arrow.svg -------------------------------------------------------------------------------- /src/svg/left_tee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/left_tee.svg -------------------------------------------------------------------------------- /src/svg/ll_angle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/ll_angle.svg -------------------------------------------------------------------------------- /src/svg/lr_angle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/lr_angle.svg -------------------------------------------------------------------------------- /src/svg/n-resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/n-resize.svg -------------------------------------------------------------------------------- /src/svg/ne-resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/ne-resize.svg -------------------------------------------------------------------------------- /src/svg/nesw-resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/nesw-resize.svg -------------------------------------------------------------------------------- /src/svg/no-drop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/no-drop.svg -------------------------------------------------------------------------------- /src/svg/not-allowed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/not-allowed.svg -------------------------------------------------------------------------------- /src/svg/ns-resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/ns-resize.svg -------------------------------------------------------------------------------- /src/svg/nw-resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/nw-resize.svg -------------------------------------------------------------------------------- /src/svg/nwse-resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/nwse-resize.svg -------------------------------------------------------------------------------- /src/svg/pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/pencil.svg -------------------------------------------------------------------------------- /src/svg/pointer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/pointer.svg -------------------------------------------------------------------------------- /src/svg/progress.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/progress.svg -------------------------------------------------------------------------------- /src/svg/progress.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/progress.txt -------------------------------------------------------------------------------- /src/svg/right-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/right-arrow.svg -------------------------------------------------------------------------------- /src/svg/right_ptr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/right_ptr.svg -------------------------------------------------------------------------------- /src/svg/right_tee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/right_tee.svg -------------------------------------------------------------------------------- /src/svg/row-resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/row-resize.svg -------------------------------------------------------------------------------- /src/svg/s-resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/s-resize.svg -------------------------------------------------------------------------------- /src/svg/se-resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/se-resize.svg -------------------------------------------------------------------------------- /src/svg/sw-resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/sw-resize.svg -------------------------------------------------------------------------------- /src/svg/text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/text.svg -------------------------------------------------------------------------------- /src/svg/top_tee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/top_tee.svg -------------------------------------------------------------------------------- /src/svg/ul_angle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/ul_angle.svg -------------------------------------------------------------------------------- /src/svg/up-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/up-arrow.svg -------------------------------------------------------------------------------- /src/svg/ur_angle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/ur_angle.svg -------------------------------------------------------------------------------- /src/svg/vertical-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/vertical-text.svg -------------------------------------------------------------------------------- /src/svg/w-resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/w-resize.svg -------------------------------------------------------------------------------- /src/svg/wait.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/wait.svg -------------------------------------------------------------------------------- /src/svg/wait.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/wait.txt -------------------------------------------------------------------------------- /src/svg/x-cursor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/x-cursor.svg -------------------------------------------------------------------------------- /src/svg/zoom-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/zoom-in.svg -------------------------------------------------------------------------------- /src/svg/zoom-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/svg/zoom-out.svg -------------------------------------------------------------------------------- /src/themes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevmeyer/mocu-xcursor/HEAD/src/themes.txt --------------------------------------------------------------------------------