├── .gitignore ├── .windows ├── alt-select.cur ├── busy.ani ├── diagonal-resize-1.cur ├── diagonal-resize-2.cur ├── handwriting.cur ├── help-select.cur ├── horizontal-resize.cur ├── install.inf ├── link-select.cur ├── move.cur ├── normal-select.cur ├── pirate.cur ├── precision-select.cur ├── text-select.cur ├── unavailable.cur ├── vertical-resize.cur └── working-in-background.ani ├── COPYING ├── README.md ├── anicursorgen.py ├── build.sh ├── preview-dark.png ├── preview-dark.svg ├── preview-light.png ├── preview-light.svg ├── product.svg └── src ├── animated-cursor-list ├── config ├── animated │ ├── progress.spec │ └── wait.spec └── static │ ├── alias.spec │ ├── all-scroll.spec │ ├── bottom_left_corner.spec │ ├── bottom_right_corner.spec │ ├── bottom_side.spec │ ├── cell.spec │ ├── center_ptr.spec │ ├── col-resize.spec │ ├── color-picker.spec │ ├── context-menu.spec │ ├── copy.spec │ ├── crosshair.spec │ ├── default.spec │ ├── dnd-move.spec │ ├── dnd-no-drop.spec │ ├── down-arrow.spec │ ├── draft.spec │ ├── fleur.spec │ ├── help.spec │ ├── left-arrow.spec │ ├── left_side.spec │ ├── no-drop.spec │ ├── not-allowed.spec │ ├── openhand.spec │ ├── pencil.spec │ ├── pirate.spec │ ├── pointer.spec │ ├── right-arrow.spec │ ├── right_ptr.spec │ ├── right_side.spec │ ├── row-resize.spec │ ├── size_bdiag.spec │ ├── size_fdiag.spec │ ├── size_hor.spec │ ├── size_ver.spec │ ├── text.spec │ ├── top_left_corner.spec │ ├── top_right_corner.spec │ ├── top_side.spec │ ├── up-arrow.spec │ ├── vertical-text.spec │ ├── wayland-cursor.spec │ ├── x-cursor.spec │ ├── zoom-in.spec │ └── zoom-out.spec ├── cursor-aliases ├── index.theme ├── static-cursor-list ├── svg ├── dark │ ├── 000-template.svg │ ├── alias.svg │ ├── all-scroll.svg │ ├── bottom_left_corner.svg │ ├── bottom_right_corner.svg │ ├── bottom_side.svg │ ├── cell.svg │ ├── center_ptr.svg │ ├── col-resize.svg │ ├── color-picker.svg │ ├── context-menu.svg │ ├── copy.svg │ ├── crosshair.svg │ ├── default.svg │ ├── dnd-move.svg │ ├── dnd-no-drop.svg │ ├── down-arrow.svg │ ├── draft.svg │ ├── fleur.svg │ ├── help.svg │ ├── left-arrow.svg │ ├── left_side.svg │ ├── no-drop.svg │ ├── not-allowed.svg │ ├── openhand.svg │ ├── pencil.svg │ ├── pirate.svg │ ├── pointer.svg │ ├── progress-00.svg │ ├── progress-01.svg │ ├── progress-02.svg │ ├── progress-03.svg │ ├── progress-04.svg │ ├── progress-05.svg │ ├── progress-06.svg │ ├── progress-07.svg │ ├── progress-08.svg │ ├── progress-09.svg │ ├── progress-10.svg │ ├── progress-11.svg │ ├── progress-12.svg │ ├── progress-13.svg │ ├── progress-14.svg │ ├── progress-15.svg │ ├── progress-16.svg │ ├── progress-17.svg │ ├── progress-18.svg │ ├── progress-19.svg │ ├── progress-20.svg │ ├── progress-21.svg │ ├── progress-22.svg │ ├── progress-23.svg │ ├── right-arrow.svg │ ├── right_ptr.svg │ ├── right_side.svg │ ├── row-resize.svg │ ├── size_bdiag.svg │ ├── size_fdiag.svg │ ├── size_hor.svg │ ├── size_ver.svg │ ├── text.svg │ ├── top_left_corner.svg │ ├── top_right_corner.svg │ ├── top_side.svg │ ├── up-arrow.svg │ ├── vertical-text.svg │ ├── wait-00.svg │ ├── wait-01.svg │ ├── wait-02.svg │ ├── wait-03.svg │ ├── wait-04.svg │ ├── wait-05.svg │ ├── wait-06.svg │ ├── wait-07.svg │ ├── wait-08.svg │ ├── wait-09.svg │ ├── wait-10.svg │ ├── wait-11.svg │ ├── wait-12.svg │ ├── wait-13.svg │ ├── wait-14.svg │ ├── wait-15.svg │ ├── wait-16.svg │ ├── wait-17.svg │ ├── wait-18.svg │ ├── wait-19.svg │ ├── wait-20.svg │ ├── wait-21.svg │ ├── wait-22.svg │ ├── wait-23.svg │ ├── wayland-cursor.svg │ ├── x-cursor.svg │ ├── zoom-in.svg │ └── zoom-out.svg └── light │ ├── 000-template.svg │ ├── alias.svg │ ├── all-scroll.svg │ ├── bottom_left_corner.svg │ ├── bottom_right_corner.svg │ ├── bottom_side.svg │ ├── cell.svg │ ├── center_ptr.svg │ ├── col-resize.svg │ ├── color-picker.svg │ ├── context-menu.svg │ ├── copy.svg │ ├── crosshair.svg │ ├── default.svg │ ├── dnd-move.svg │ ├── dnd-no-drop.svg │ ├── down-arrow.svg │ ├── draft.svg │ ├── fleur.svg │ ├── help.svg │ ├── left-arrow.svg │ ├── left_side.svg │ ├── no-drop.svg │ ├── not-allowed.svg │ ├── openhand.svg │ ├── pencil.svg │ ├── pirate.svg │ ├── pointer.svg │ ├── progress-00.svg │ ├── progress-01.svg │ ├── progress-02.svg │ ├── progress-03.svg │ ├── progress-04.svg │ ├── progress-05.svg │ ├── progress-06.svg │ ├── progress-07.svg │ ├── progress-08.svg │ ├── progress-09.svg │ ├── progress-10.svg │ ├── progress-11.svg │ ├── progress-12.svg │ ├── progress-13.svg │ ├── progress-14.svg │ ├── progress-15.svg │ ├── progress-16.svg │ ├── progress-17.svg │ ├── progress-18.svg │ ├── progress-19.svg │ ├── progress-20.svg │ ├── progress-21.svg │ ├── progress-22.svg │ ├── progress-23.svg │ ├── right-arrow.svg │ ├── right_ptr.svg │ ├── right_side.svg │ ├── row-resize.svg │ ├── size_bdiag.svg │ ├── size_fdiag.svg │ ├── size_hor.svg │ ├── size_ver.svg │ ├── text.svg │ ├── top_left_corner.svg │ ├── top_right_corner.svg │ ├── top_side.svg │ ├── up-arrow.svg │ ├── vertical-text.svg │ ├── wait-00.svg │ ├── wait-01.svg │ ├── wait-02.svg │ ├── wait-03.svg │ ├── wait-04.svg │ ├── wait-05.svg │ ├── wait-06.svg │ ├── wait-07.svg │ ├── wait-08.svg │ ├── wait-09.svg │ ├── wait-10.svg │ ├── wait-11.svg │ ├── wait-12.svg │ ├── wait-13.svg │ ├── wait-14.svg │ ├── wait-15.svg │ ├── wait-16.svg │ ├── wait-17.svg │ ├── wait-18.svg │ ├── wait-19.svg │ ├── wait-20.svg │ ├── wait-21.svg │ ├── wait-22.svg │ ├── wait-23.svg │ ├── wayland-cursor.svg │ ├── x-cursor.svg │ ├── zoom-in.svg │ └── zoom-out.svg ├── thumbnail-dark.png └── thumbnail-light.png /.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | dist 3 | -------------------------------------------------------------------------------- /.windows/alt-select.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeferrourke/capitaine-cursors/06c88433662a4004cf56a6e471b523a0a8880be0/.windows/alt-select.cur -------------------------------------------------------------------------------- /.windows/busy.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeferrourke/capitaine-cursors/06c88433662a4004cf56a6e471b523a0a8880be0/.windows/busy.ani -------------------------------------------------------------------------------- /.windows/diagonal-resize-1.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeferrourke/capitaine-cursors/06c88433662a4004cf56a6e471b523a0a8880be0/.windows/diagonal-resize-1.cur -------------------------------------------------------------------------------- /.windows/diagonal-resize-2.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeferrourke/capitaine-cursors/06c88433662a4004cf56a6e471b523a0a8880be0/.windows/diagonal-resize-2.cur -------------------------------------------------------------------------------- /.windows/handwriting.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeferrourke/capitaine-cursors/06c88433662a4004cf56a6e471b523a0a8880be0/.windows/handwriting.cur -------------------------------------------------------------------------------- /.windows/help-select.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeferrourke/capitaine-cursors/06c88433662a4004cf56a6e471b523a0a8880be0/.windows/help-select.cur -------------------------------------------------------------------------------- /.windows/horizontal-resize.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeferrourke/capitaine-cursors/06c88433662a4004cf56a6e471b523a0a8880be0/.windows/horizontal-resize.cur -------------------------------------------------------------------------------- /.windows/install.inf: -------------------------------------------------------------------------------- 1 | ; Capitaine cursors 2 | ; Right click on the file "install.inf" and select "Install". Then apply Capitaine cursors in Control Panel > Appearance and Personalization > Personalization > Change mouse pointers. 3 | 4 | [Version] 5 | signature="$CHICAGO$" 6 | 7 | [DefaultInstall] 8 | CopyFiles = Scheme.Cur, Scheme.Txt 9 | AddReg = Scheme.Reg 10 | 11 | [DestinationDirs] 12 | Scheme.Cur = 10,"%CUR_DIR%" 13 | Scheme.Txt = 10,"%CUR_DIR%" 14 | 15 | [Scheme.Reg] 16 | HKCU,"Control Panel\Cursors\Schemes","%SCHEME_NAME%",,"%10%\%CUR_DIR%\%pointer%,%10%\%CUR_DIR%\%help%,%10%\%CUR_DIR%\%work%,%10%\%CUR_DIR%\%busy%,%10%\%CUR_DIR%\%cross%,%10%\%CUR_DIR%\%Text%,%10%\%CUR_DIR%\%Hand%,%10%\%CUR_DIR%\%unavailiable%,%10%\%CUR_DIR%\%Vert%,%10%\%CUR_DIR%\%Horz%,%10%\%CUR_DIR%\%Dgn1%,%10%\%CUR_DIR%\%Dgn2%,%10%\%CUR_DIR%\%move%,%10%\%CUR_DIR%\%alternate%,%10%\%CUR_DIR%\%link%" 17 | 18 | ; -- Installed files 19 | 20 | [Scheme.Cur] 21 | busy.ani 22 | working-in-background.ani 23 | normal-select.cur 24 | help-select.cur 25 | link-select.cur 26 | move.cur 27 | diagonal-resize-2.cur 28 | Install.inf 29 | vertical-resize.cur 30 | horizontal-resize.cur 31 | diagonal-resize-1.cur 32 | handwriting.cur 33 | precision-select.cur 34 | text-select.cur 35 | unavailable.cur 36 | alt-select.cur 37 | 38 | [Strings] 39 | CUR_DIR = "Cursors\Capitain Cursors" 40 | SCHEME_NAME = "Capitaine Cursors" 41 | pointer = "normal-select.cur" 42 | help = "help-select.cur" 43 | work = "working-in-background.ani" 44 | busy = "busy.ani" 45 | text = "text-select.cur" 46 | unavailiable = "unavailable.cur" 47 | vert = "vertical-resize.cur" 48 | horz = "horizontal-resize.cur" 49 | dgn1 = "diagonal-resize-1.cur" 50 | dgn2 = "diagonal-resize-2.cur" 51 | move = "move.cur" 52 | link = "link-select.cur" 53 | cross = "precision-select.cur" 54 | hand = "handwriting.cur" 55 | alternate = "alt-select.cur" 56 | -------------------------------------------------------------------------------- /.windows/link-select.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeferrourke/capitaine-cursors/06c88433662a4004cf56a6e471b523a0a8880be0/.windows/link-select.cur -------------------------------------------------------------------------------- /.windows/move.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeferrourke/capitaine-cursors/06c88433662a4004cf56a6e471b523a0a8880be0/.windows/move.cur -------------------------------------------------------------------------------- /.windows/normal-select.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeferrourke/capitaine-cursors/06c88433662a4004cf56a6e471b523a0a8880be0/.windows/normal-select.cur -------------------------------------------------------------------------------- /.windows/pirate.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeferrourke/capitaine-cursors/06c88433662a4004cf56a6e471b523a0a8880be0/.windows/pirate.cur -------------------------------------------------------------------------------- /.windows/precision-select.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeferrourke/capitaine-cursors/06c88433662a4004cf56a6e471b523a0a8880be0/.windows/precision-select.cur -------------------------------------------------------------------------------- /.windows/text-select.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeferrourke/capitaine-cursors/06c88433662a4004cf56a6e471b523a0a8880be0/.windows/text-select.cur -------------------------------------------------------------------------------- /.windows/unavailable.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeferrourke/capitaine-cursors/06c88433662a4004cf56a6e471b523a0a8880be0/.windows/unavailable.cur -------------------------------------------------------------------------------- /.windows/vertical-resize.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeferrourke/capitaine-cursors/06c88433662a4004cf56a6e471b523a0a8880be0/.windows/vertical-resize.cur -------------------------------------------------------------------------------- /.windows/working-in-background.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeferrourke/capitaine-cursors/06c88433662a4004cf56a6e471b523a0a8880be0/.windows/working-in-background.ani -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Capitaine cursors 2 | 3 | This is an x-cursor theme inspired by macOS and based on KDE Breeze. 4 | The source files were made in Inkscape, and the theme was designed to pair well with my icon pack, [La Capitaine][la-capitaine-icons]. 5 | 6 | [la-capitaine-icons]: https://github.com/keeferrourke/la-capitaine-icon-theme 7 | 8 | This cursor should scale appropriately for any display resolution. 9 | 10 | ## Supported DPIs 11 | 12 | This cursor pack aims to support all [named pixel densities][named-dpi]. 13 | 14 | [named-dpi]: https://en.wikipedia.org/wiki/Pixel_density#Named_pixel_densities 15 | 16 | | Name | Build option name | Rendered density (DPI) | Scale | 17 | | :------ | :---------------- | :--------------------- | :------------- | 18 | | LODPI | `-d lo` | 96-144 | x1, 1.25, x1.5 | 19 | | TVDPI | `-d tv` (default) | 192 | x2 | 20 | | HDPI | `-d hd` | 240 | x2.5 | 21 | | XHDPI | `-d xhd` | 288 | x3 | 22 | | XXHDPI | `-d xxhd` | 384-480 | x4, x5 | 23 | | XXXHDPI | `-d xxxhd` | 576+ | x6, x10 | 24 | 25 | ## Building from source 26 | 27 | Building from source can take a really long time, depending on the max specified DPI. 28 | Pre-built packages are available for download. 29 | 30 | That said, you'll find everything you need to build and modify this cursor set in the `src/` directory. 31 | 32 | Make sure `inkscape` and `xcursorgen` are installed 33 | 34 | ``` 35 | sudo apt install inkscape x11-apps # Debian, Ubuntu based distros 36 | sudo dnf install inkscape xorg-x11-apps # Fedora, EPEL based distros 37 | brew cask install xquartz inkscape # macOS 38 | ``` 39 | 40 | Then run the provided script: 41 | 42 | ``` 43 | ./build.sh 44 | ``` 45 | 46 | This will generate the pixmaps and appropriate aliases. 47 | The freshly compiled cursor theme will be located in the `dist/` folder. 48 | 49 | The script has a few options described below: 50 | 51 | | Option | Values | Description | 52 | | :----- | :-------------- | :------------------------------ | 53 | | `-p` | `unix`, `win32` | Build for BSD/Linux, or Windows | 54 | | `-t` | `dark`, `light` | Choose the variant to build | 55 | | `-d` | See DPIs | Set the max DPI to render | 56 | 57 | *Note: building the win32 cursors from source is not currently supported, but it is on the roadmap. 58 | 59 | ## Pre-built binaries 60 | 61 | Pre-built binaries are available for download at [pling.com](https://www.pling.com/p/1148692) :heart: 62 | 63 | ## Installation 64 | 65 | ### \*NIXes, \*BSDs, and possibly others 66 | 67 | To install the cursor theme simply copy the theme to your icons directory. 68 | For local user installation: 69 | 70 | ``` 71 | mkdir -p ~/.icons/capitaine-cursors 72 | cp -pr path/to/theme/ ~/.icons/capitaine-cursors 73 | ``` 74 | 75 | For system-wide installation for all users: 76 | 77 | ``` 78 | sudo cp -pr path/to/theme/ /usr/share/icons/capitaine-cursors 79 | ``` 80 | 81 | Then set the theme with your preferred desktop tools. 82 | 83 | #### Fedora and EPEL 84 | 85 | There is a third-party Copr repository with ready-to-use RPMs: 86 | 87 | ``` 88 | sudo dnf copr enable tcg/themes 89 | sudo dnf install la-capitaine-cursor-theme 90 | ``` 91 | 92 | #### Arch Linux 93 | 94 | Capitaine cursors are available in the official Arch Linux repositories. 95 | 96 | ``` 97 | pacman -S capitaine-cursors 98 | ``` 99 | 100 | ### Windows 101 | 102 | The Windows build comes with an INF file to make installation easy. 103 | 104 | 1. Open `.windows/` in Explorer, and right click on `install.inf`. 105 | 2. Click 'Install' from the context menu, and authorise the modifications to your system. 106 | 3. Open `Control Panel` > `Personalisation and Appearance` > `Change mouse pointers`, and select Capitaine cursors. 107 | 4. Click 'Apply'. 108 | 109 | ## License 110 | 111 | Capitaine cursors is based on KDE Breeze cursors, as such it falls under the same license. 112 | 113 | Capitaine cursors is LGPLv3. See COPYING for more details. 114 | 115 | ## Donations 116 | 117 | If you like this cursor theme and want to support me, please consider [donating](https://paypal.me/keeferrourke). 118 | 119 | ## Preview 120 | 121 | | Dark | Light | 122 | | --------------------- | ---------------------- | 123 | | ![](preview-dark.png) | ![](preview-light.png) | 124 | -------------------------------------------------------------------------------- /preview-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeferrourke/capitaine-cursors/06c88433662a4004cf56a6e471b523a0a8880be0/preview-dark.png -------------------------------------------------------------------------------- /preview-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeferrourke/capitaine-cursors/06c88433662a4004cf56a6e471b523a0a8880be0/preview-light.png -------------------------------------------------------------------------------- /src/animated-cursor-list: -------------------------------------------------------------------------------- 1 | progress 2 | wait -------------------------------------------------------------------------------- /src/config/animated/progress.spec: -------------------------------------------------------------------------------- 1 | 4 2 24 30 -------------------------------------------------------------------------------- /src/config/animated/wait.spec: -------------------------------------------------------------------------------- 1 | 12 12 24 30 -------------------------------------------------------------------------------- /src/config/static/alias.spec: -------------------------------------------------------------------------------- 1 | 4 2 -------------------------------------------------------------------------------- /src/config/static/all-scroll.spec: -------------------------------------------------------------------------------- 1 | 12 12 -------------------------------------------------------------------------------- /src/config/static/bottom_left_corner.spec: -------------------------------------------------------------------------------- 1 | 4 18 -------------------------------------------------------------------------------- /src/config/static/bottom_right_corner.spec: -------------------------------------------------------------------------------- 1 | 20 18 -------------------------------------------------------------------------------- /src/config/static/bottom_side.spec: -------------------------------------------------------------------------------- 1 | 12 18 -------------------------------------------------------------------------------- /src/config/static/cell.spec: -------------------------------------------------------------------------------- 1 | 12 12 -------------------------------------------------------------------------------- /src/config/static/center_ptr.spec: -------------------------------------------------------------------------------- 1 | 12 4 -------------------------------------------------------------------------------- /src/config/static/col-resize.spec: -------------------------------------------------------------------------------- 1 | 12 12 -------------------------------------------------------------------------------- /src/config/static/color-picker.spec: -------------------------------------------------------------------------------- 1 | 4 20 -------------------------------------------------------------------------------- /src/config/static/context-menu.spec: -------------------------------------------------------------------------------- 1 | 4 2 -------------------------------------------------------------------------------- /src/config/static/copy.spec: -------------------------------------------------------------------------------- 1 | 4 2 -------------------------------------------------------------------------------- /src/config/static/crosshair.spec: -------------------------------------------------------------------------------- 1 | 12 12 -------------------------------------------------------------------------------- /src/config/static/default.spec: -------------------------------------------------------------------------------- 1 | 4 2 -------------------------------------------------------------------------------- /src/config/static/dnd-move.spec: -------------------------------------------------------------------------------- 1 | 12 12 -------------------------------------------------------------------------------- /src/config/static/dnd-no-drop.spec: -------------------------------------------------------------------------------- 1 | 12 12 -------------------------------------------------------------------------------- /src/config/static/down-arrow.spec: -------------------------------------------------------------------------------- 1 | 12 20 -------------------------------------------------------------------------------- /src/config/static/draft.spec: -------------------------------------------------------------------------------- 1 | 4 20 -------------------------------------------------------------------------------- /src/config/static/fleur.spec: -------------------------------------------------------------------------------- 1 | 12 12 -------------------------------------------------------------------------------- /src/config/static/help.spec: -------------------------------------------------------------------------------- 1 | 4 2 -------------------------------------------------------------------------------- /src/config/static/left-arrow.spec: -------------------------------------------------------------------------------- 1 | 4 12 -------------------------------------------------------------------------------- /src/config/static/left_side.spec: -------------------------------------------------------------------------------- 1 | 4 12 -------------------------------------------------------------------------------- /src/config/static/no-drop.spec: -------------------------------------------------------------------------------- 1 | 4 2 -------------------------------------------------------------------------------- /src/config/static/not-allowed.spec: -------------------------------------------------------------------------------- 1 | 12 12 -------------------------------------------------------------------------------- /src/config/static/openhand.spec: -------------------------------------------------------------------------------- 1 | 12 12 -------------------------------------------------------------------------------- /src/config/static/pencil.spec: -------------------------------------------------------------------------------- 1 | 4 4 -------------------------------------------------------------------------------- /src/config/static/pirate.spec: -------------------------------------------------------------------------------- 1 | 12 12 -------------------------------------------------------------------------------- /src/config/static/pointer.spec: -------------------------------------------------------------------------------- 1 | 12 6 -------------------------------------------------------------------------------- /src/config/static/right-arrow.spec: -------------------------------------------------------------------------------- 1 | 20 12 -------------------------------------------------------------------------------- /src/config/static/right_ptr.spec: -------------------------------------------------------------------------------- 1 | 14 4 -------------------------------------------------------------------------------- /src/config/static/right_side.spec: -------------------------------------------------------------------------------- 1 | 20 12 -------------------------------------------------------------------------------- /src/config/static/row-resize.spec: -------------------------------------------------------------------------------- 1 | 12 12 -------------------------------------------------------------------------------- /src/config/static/size_bdiag.spec: -------------------------------------------------------------------------------- 1 | 12 12 -------------------------------------------------------------------------------- /src/config/static/size_fdiag.spec: -------------------------------------------------------------------------------- 1 | 12 12 -------------------------------------------------------------------------------- /src/config/static/size_hor.spec: -------------------------------------------------------------------------------- 1 | 12 12 -------------------------------------------------------------------------------- /src/config/static/size_ver.spec: -------------------------------------------------------------------------------- 1 | 12 12 -------------------------------------------------------------------------------- /src/config/static/text.spec: -------------------------------------------------------------------------------- 1 | 12 12 -------------------------------------------------------------------------------- /src/config/static/top_left_corner.spec: -------------------------------------------------------------------------------- 1 | 4 4 -------------------------------------------------------------------------------- /src/config/static/top_right_corner.spec: -------------------------------------------------------------------------------- 1 | 20 4 -------------------------------------------------------------------------------- /src/config/static/top_side.spec: -------------------------------------------------------------------------------- 1 | 12 4 -------------------------------------------------------------------------------- /src/config/static/up-arrow.spec: -------------------------------------------------------------------------------- 1 | 12 4 -------------------------------------------------------------------------------- /src/config/static/vertical-text.spec: -------------------------------------------------------------------------------- 1 | 12 12 -------------------------------------------------------------------------------- /src/config/static/wayland-cursor.spec: -------------------------------------------------------------------------------- 1 | 12 12 -------------------------------------------------------------------------------- /src/config/static/x-cursor.spec: -------------------------------------------------------------------------------- 1 | 12 12 -------------------------------------------------------------------------------- /src/config/static/zoom-in.spec: -------------------------------------------------------------------------------- 1 | 12 12 -------------------------------------------------------------------------------- /src/config/static/zoom-out.spec: -------------------------------------------------------------------------------- 1 | 12 12 -------------------------------------------------------------------------------- /src/cursor-aliases: -------------------------------------------------------------------------------- 1 | 00000000000000020006000e7e9ffc3f progress 2 | 00008160000006810000408080010102 size_ver 3 | 03b6e0fcb3499374a867c041f52298f0 circle 4 | 08e8e1c95fe2fc01f976f1e063a24ccd progress 5 | 1081e37283d90000800003c07f3ef6bf copy 6 | 3085a0e285430894940527032f8b26df alias 7 | 3ecb610c1bf2410f44200f48c40d3599 progress 8 | 4498f0e0c1937ffe01fd06f973665830 dnd-move 9 | 5c6cd98b3f3ebcb1f9c7f1c204630408 help 10 | 6407b0e94181790501fd1e167b474872 copy 11 | 640fb0e74195791501fd1ed57b41487f alias 12 | 9081237383d90e509aa00f00170e968f dnd-move 13 | 9d800788f1b08800ae810202380a0822 pointer 14 | a2a266d0498c3104214a47bd64ab0fc8 alias 15 | b66166c04f8c3109214a4fbd64a50fc8 copy 16 | d9ce0ab605698f320427677b458ad60b help 17 | e29285e634086352946a0e7090d73106 pointer 18 | fcf21c00b30f7e3f83fe0dfd12e71cff dnd-move 19 | arrow default 20 | circle not-allowed 21 | closedhand dnd-move 22 | col-resize size_hor 23 | color-picker crosshair 24 | copy dnd-move 25 | cross crosshair 26 | crossed_circle not-allowed 27 | dnd-copy copy 28 | dnd-none dnd-move 29 | e-resize size_hor 30 | forbidden no-drop 31 | grab openhand 32 | grabbing dnd-move 33 | h_double_arrow size_hor 34 | half-busy progress 35 | hand1 pointer 36 | hand2 pointer 37 | ibeam text 38 | left_ptr default 39 | left_ptr_help help 40 | left_ptr_watch progress 41 | left_side left-arrow 42 | link alias 43 | ll_angle bottom_left_corner 44 | lr_angle bottom_right_corner 45 | move dnd-move 46 | n-resize size_ver 47 | ne-resize top_right_corner 48 | nesw-resize size_bdiag 49 | nw-resize top_left_corner 50 | nwse-resize size_fdiag 51 | plus cell 52 | pointing_hand pointer 53 | question_arrow help 54 | right_side right-arrow 55 | s-resize size_ver 56 | sb_h_double_arrow size_hor 57 | sb_v_double_arrow size_ver 58 | se-resize bottom_right_corner 59 | size_all fleur 60 | split_h col-resize 61 | split_v row-resize 62 | sw-resize bottom_left_corner 63 | ul_angle top_left_corner 64 | ur_angle top_right_corner 65 | v_double_arrow size_ver 66 | w-resize size_hor 67 | watch wait 68 | whats_this help 69 | xterm text 70 | -------------------------------------------------------------------------------- /src/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name=Capitaine Cursors 3 | 4 | -------------------------------------------------------------------------------- /src/static-cursor-list: -------------------------------------------------------------------------------- 1 | alias 2 | all-scroll 3 | bottom_left_corner 4 | bottom_right_corner 5 | bottom_side 6 | cell 7 | center_ptr 8 | color-picker 9 | col-resize 10 | context-menu 11 | copy 12 | crosshair 13 | default 14 | dnd-move 15 | dnd-no-drop 16 | down-arrow 17 | draft 18 | fleur 19 | help 20 | left_side 21 | left-arrow 22 | no-drop 23 | not-allowed 24 | openhand 25 | pencil 26 | pirate 27 | pointer 28 | right_ptr 29 | right_side 30 | right-arrow 31 | row-resize 32 | size_bdiag 33 | size_fdiag 34 | size_hor 35 | size_ver 36 | text 37 | top_left_corner 38 | top_right_corner 39 | top_side 40 | up-arrow 41 | vertical-text 42 | wayland-cursor 43 | x-cursor 44 | zoom-in 45 | zoom-out -------------------------------------------------------------------------------- /src/svg/dark/000-template.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /src/svg/dark/alias.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /src/svg/dark/all-scroll.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/svg/dark/bottom_left_corner.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/svg/dark/bottom_right_corner.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/svg/dark/bottom_side.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /src/svg/dark/cell.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/svg/dark/center_ptr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/svg/dark/col-resize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/svg/dark/color-picker.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/svg/dark/context-menu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/svg/dark/copy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /src/svg/dark/crosshair.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /src/svg/dark/default.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/svg/dark/dnd-move.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/svg/dark/dnd-no-drop.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /src/svg/dark/down-arrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/svg/dark/draft.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/svg/dark/fleur.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/svg/dark/help.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /src/svg/dark/left-arrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/svg/dark/left_side.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/svg/dark/no-drop.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /src/svg/dark/not-allowed.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/svg/dark/openhand.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/svg/dark/pencil.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/svg/dark/pirate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/svg/dark/pointer.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/svg/dark/right-arrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/svg/dark/right_ptr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/svg/dark/right_side.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/svg/dark/row-resize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/svg/dark/size_bdiag.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/svg/dark/size_fdiag.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/svg/dark/size_hor.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/svg/dark/size_ver.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/svg/dark/text.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/svg/dark/top_left_corner.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/svg/dark/top_right_corner.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/svg/dark/top_side.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/svg/dark/up-arrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/svg/dark/vertical-text.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/svg/dark/wayland-cursor.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/svg/dark/x-cursor.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/svg/dark/zoom-in.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/svg/dark/zoom-out.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/svg/light/000-template.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /src/svg/light/alias.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /src/svg/light/all-scroll.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/svg/light/bottom_left_corner.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/svg/light/bottom_right_corner.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/svg/light/bottom_side.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /src/svg/light/cell.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/svg/light/center_ptr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/svg/light/col-resize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/svg/light/color-picker.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/svg/light/context-menu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/svg/light/copy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /src/svg/light/crosshair.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /src/svg/light/default.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/svg/light/dnd-move.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/svg/light/dnd-no-drop.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /src/svg/light/down-arrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/svg/light/draft.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/svg/light/fleur.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/svg/light/help.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /src/svg/light/left-arrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/svg/light/left_side.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/svg/light/no-drop.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /src/svg/light/not-allowed.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/svg/light/openhand.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/svg/light/pencil.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/svg/light/pointer.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/svg/light/right-arrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/svg/light/right_ptr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/svg/light/right_side.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/svg/light/row-resize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/svg/light/size_bdiag.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/svg/light/size_fdiag.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/svg/light/size_hor.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/svg/light/size_ver.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/svg/light/text.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/svg/light/top_left_corner.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/svg/light/top_right_corner.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/svg/light/top_side.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/svg/light/up-arrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/svg/light/vertical-text.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/svg/light/wayland-cursor.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/svg/light/x-cursor.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/svg/light/zoom-in.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/svg/light/zoom-out.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/thumbnail-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeferrourke/capitaine-cursors/06c88433662a4004cf56a6e471b523a0a8880be0/src/thumbnail-dark.png -------------------------------------------------------------------------------- /src/thumbnail-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeferrourke/capitaine-cursors/06c88433662a4004cf56a6e471b523a0a8880be0/src/thumbnail-light.png --------------------------------------------------------------------------------