├── LICENSE ├── README.md ├── build.sh ├── dist ├── cursors │ ├── 00000000000000020006000e7e9ffc3f │ ├── 00008160000006810000408080010102 │ ├── 03b6e0fcb3499374a867c041f52298f0 │ ├── 08e8e1c95fe2fc01f976f1e063a24ccd │ ├── 1081e37283d90000800003c07f3ef6bf │ ├── 3085a0e285430894940527032f8b26df │ ├── 3ecb610c1bf2410f44200f48c40d3599 │ ├── 4498f0e0c1937ffe01fd06f973665830 │ ├── 5c6cd98b3f3ebcb1f9c7f1c204630408 │ ├── 6407b0e94181790501fd1e167b474872 │ ├── 640fb0e74195791501fd1ed57b41487f │ ├── 9081237383d90e509aa00f00170e968f │ ├── 9d800788f1b08800ae810202380a0822 │ ├── a2a266d0498c3104214a47bd64ab0fc8 │ ├── alias │ ├── all-scroll │ ├── arrow │ ├── b66166c04f8c3109214a4fbd64a50fc8 │ ├── bottom_left_corner │ ├── bottom_right_corner │ ├── bottom_side │ ├── cell │ ├── center_ptr │ ├── circle │ ├── closedhand │ ├── col-resize │ ├── color-picker │ ├── context-menu │ ├── copy │ ├── cross │ ├── crossed_circle │ ├── crosshair │ ├── d9ce0ab605698f320427677b458ad60b │ ├── default │ ├── dnd-copy │ ├── dnd-move │ ├── dnd-no-drop │ ├── dnd-none │ ├── down-arrow │ ├── draft │ ├── e-resize │ ├── e29285e634086352946a0e7090d73106 │ ├── fcf21c00b30f7e3f83fe0dfd12e71cff │ ├── fleur │ ├── forbidden │ ├── grab │ ├── grabbing │ ├── h_double_arrow │ ├── half-busy │ ├── hand1 │ ├── hand2 │ ├── help │ ├── ibeam │ ├── left-arrow │ ├── left_ptr │ ├── left_ptr_help │ ├── left_ptr_watch │ ├── left_side │ ├── link │ ├── ll_angle │ ├── lr_angle │ ├── move │ ├── n-resize │ ├── ne-resize │ ├── nesw-resize │ ├── no-drop │ ├── not-allowed │ ├── nw-resize │ ├── nwse-resize │ ├── openhand │ ├── pencil │ ├── pirate │ ├── plus │ ├── pointer │ ├── pointing_hand │ ├── progress │ ├── question_arrow │ ├── right-arrow │ ├── right_ptr │ ├── right_side │ ├── row-resize │ ├── s-resize │ ├── sb_h_double_arrow │ ├── sb_v_double_arrow │ ├── se-resize │ ├── size_all │ ├── size_bdiag │ ├── size_fdiag │ ├── size_hor │ ├── size_ver │ ├── split_h │ ├── split_v │ ├── sw-resize │ ├── text │ ├── top_left_corner │ ├── top_right_corner │ ├── top_side │ ├── ul_angle │ ├── up-arrow │ ├── ur_angle │ ├── v_double_arrow │ ├── vertical-text │ ├── w-resize │ ├── wait │ ├── watch │ ├── wayland-cursor │ ├── whats_this │ ├── x-cursor │ ├── xterm │ ├── zoom-in │ └── zoom-out └── index.theme ├── install.sh ├── preview.png └── src ├── config ├── alias.cursor ├── all-scroll.cursor ├── bottom_left_corner.cursor ├── bottom_right_corner.cursor ├── bottom_side.cursor ├── cell.cursor ├── center_ptr.cursor ├── col-resize.cursor ├── color-picker.cursor ├── context-menu.cursor ├── copy.cursor ├── crosshair.cursor ├── default.cursor ├── dnd-move.cursor ├── dnd-no-drop.cursor ├── down-arrow.cursor ├── draft.cursor ├── fleur.cursor ├── help.cursor ├── left-arrow.cursor ├── left_side.cursor ├── no-drop.cursor ├── not-allowed.cursor ├── openhand.cursor ├── pencil.cursor ├── pirate.cursor ├── pointer.cursor ├── progress.cursor ├── right-arrow.cursor ├── right_ptr.cursor ├── right_side.cursor ├── row-resize.cursor ├── size_bdiag.cursor ├── size_fdiag.cursor ├── size_hor.cursor ├── size_ver.cursor ├── text.cursor ├── top_left_corner.cursor ├── top_right_corner.cursor ├── top_side.cursor ├── up-arrow.cursor ├── vertical-text.cursor ├── wait.cursor ├── wayland-cursor.cursor ├── x-cursor.cursor ├── zoom-in.cursor └── zoom-out.cursor ├── cursorList ├── index.theme └── 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-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 ├── progress.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-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 ├── wait.svg ├── wayland-cursor.svg ├── x-cursor.svg ├── zoom-in.svg └── zoom-out.svg /README.md: -------------------------------------------------------------------------------- 1 | # McMojave cursors 2 | This is an x-cursor theme inspired by macOS and 3 | based on [capitaine-cursors](https://github.com/keeferrourke/capitaine-cursors). 4 | 5 | ## Installation 6 | To install the cursor theme simply copy the compiled theme to your icons 7 | directory. For local user installation: 8 | 9 | ``` 10 | ./install.sh 11 | ``` 12 | 13 | For system-wide installation for all users: 14 | 15 | ``` 16 | sudo ./install.sh 17 | ``` 18 | 19 | Then set the theme with your preferred desktop tools. 20 | 21 | ## Building from source 22 | You'll find everything you need to build and modify this cursor set in 23 | the `src/` directory. To build the xcursor theme from the SVG source 24 | run: 25 | 26 | ``` 27 | ./build.sh 28 | ``` 29 | 30 | This will generate the pixmaps and appropriate aliases. 31 | The freshly compiled cursor theme will be located in `dist/` 32 | 33 | ## Preview 34 | ![McMojave](preview.png) 35 | -------------------------------------------------------------------------------- /build.sh: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | 3 | # check command avalibility 4 | has_command() { 5 | "$1" -v $1 > /dev/null 2>&1 6 | } 7 | 8 | if [ ! "$(which xcursorgen 2> /dev/null)" ]; then 9 | echo xorg-xcursorgen needs to be installed to generate the cursors. 10 | if has_command zypper; then 11 | sudo zypper in xorg-xcursorgen 12 | elif has_command apt; then 13 | sudo apt install xorg-xcursorgen 14 | elif has_command dnf; then 15 | sudo dnf install -y xorg-xcursorgen 16 | elif has_command dnf; then 17 | sudo dnf install xorg-xcursorgen 18 | elif has_command pacman; then 19 | sudo pacman -S --noconfirm xorg-xcursorgen 20 | fi 21 | fi 22 | 23 | if [ ! "$(which inkscape 2> /dev/null)" ]; then 24 | echo xorg-xcursorgen needs to be installed to generate the cursors. 25 | if has_command zypper; then 26 | sudo zypper in inkscape 27 | elif has_command apt; then 28 | sudo apt install inkscape 29 | elif has_command dnf; then 30 | sudo dnf install -y inkscape 31 | elif has_command dnf; then 32 | sudo dnf install inkscape 33 | elif has_command pacman; then 34 | sudo pacman -S --noconfirm inkscape 35 | fi 36 | fi 37 | 38 | 39 | function create { 40 | cd "$SRC" 41 | mkdir -p x1 x1_25 x1_5 x2 42 | cd "$SRC"/$1 43 | find . -name "*.svg" -type f -exec sh -c 'inkscape -o "../x1/${0%.svg}.png" -w 32 -h 32 $0' {} \; 44 | find . -name "*.svg" -type f -exec sh -c 'inkscape -o "../x1_25/${0%.svg}.png" -w 40 -w 40 $0' {} \; 45 | find . -name "*.svg" -type f -exec sh -c 'inkscape -o "../x1_5/${0%.svg}.png" -w 48 -w 48 $0' {} \; 46 | find . -name "*.svg" -type f -exec sh -c 'inkscape -o "../x2/${0%.svg}.png" -w 64 -w 64 $0' {} \; 47 | 48 | cd $SRC 49 | 50 | # generate cursors 51 | BUILD="$SRC"/../dist 52 | OUTPUT="$BUILD"/cursors 53 | ALIASES="$SRC"/cursorList 54 | 55 | if [ ! -d "$BUILD" ]; then 56 | mkdir "$BUILD" 57 | fi 58 | if [ ! -d "$OUTPUT" ]; then 59 | mkdir "$OUTPUT" 60 | fi 61 | 62 | echo -ne "Generating cursor theme...\\r" 63 | for CUR in config/*.cursor; do 64 | BASENAME="$CUR" 65 | BASENAME="${BASENAME##*/}" 66 | BASENAME="${BASENAME%.*}" 67 | 68 | xcursorgen "$CUR" "$OUTPUT/$BASENAME" 69 | done 70 | echo -e "Generating cursor theme... DONE" 71 | 72 | cd "$OUTPUT" 73 | 74 | #generate aliases 75 | echo -ne "Generating shortcuts...\\r" 76 | while read ALIAS; do 77 | FROM="${ALIAS#* }" 78 | TO="${ALIAS% *}" 79 | 80 | if [ -e $TO ]; then 81 | continue 82 | fi 83 | ln -sr "$FROM" "$TO" 84 | done < "$ALIASES" 85 | echo -e "Generating shortcuts... DONE" 86 | 87 | cd "$PWD" 88 | 89 | echo -ne "Generating Theme Index...\\r" 90 | INDEX="$OUTPUT/../index.theme" 91 | if [ ! -e "$OUTPUT/../$INDEX" ]; then 92 | touch "$INDEX" 93 | echo -e "[Icon Theme]\nName=$THEME\n" > "$INDEX" 94 | fi 95 | echo -e "Generating Theme Index... DONE" 96 | } 97 | 98 | # generate pixmaps from svg source 99 | SRC=$PWD/src 100 | THEME="McMojave Cursors" 101 | 102 | create svg 103 | 104 | -------------------------------------------------------------------------------- /dist/cursors/00000000000000020006000e7e9ffc3f: -------------------------------------------------------------------------------- 1 | progress -------------------------------------------------------------------------------- /dist/cursors/00008160000006810000408080010102: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /dist/cursors/03b6e0fcb3499374a867c041f52298f0: -------------------------------------------------------------------------------- 1 | circle -------------------------------------------------------------------------------- /dist/cursors/08e8e1c95fe2fc01f976f1e063a24ccd: -------------------------------------------------------------------------------- 1 | progress -------------------------------------------------------------------------------- /dist/cursors/1081e37283d90000800003c07f3ef6bf: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /dist/cursors/3085a0e285430894940527032f8b26df: -------------------------------------------------------------------------------- 1 | alias -------------------------------------------------------------------------------- /dist/cursors/3ecb610c1bf2410f44200f48c40d3599: -------------------------------------------------------------------------------- 1 | progress -------------------------------------------------------------------------------- /dist/cursors/4498f0e0c1937ffe01fd06f973665830: -------------------------------------------------------------------------------- 1 | dnd-move -------------------------------------------------------------------------------- /dist/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /dist/cursors/6407b0e94181790501fd1e167b474872: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /dist/cursors/640fb0e74195791501fd1ed57b41487f: -------------------------------------------------------------------------------- 1 | alias -------------------------------------------------------------------------------- /dist/cursors/9081237383d90e509aa00f00170e968f: -------------------------------------------------------------------------------- 1 | dnd-move -------------------------------------------------------------------------------- /dist/cursors/9d800788f1b08800ae810202380a0822: -------------------------------------------------------------------------------- 1 | pointer -------------------------------------------------------------------------------- /dist/cursors/a2a266d0498c3104214a47bd64ab0fc8: -------------------------------------------------------------------------------- 1 | alias -------------------------------------------------------------------------------- /dist/cursors/alias: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/alias -------------------------------------------------------------------------------- /dist/cursors/all-scroll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/all-scroll -------------------------------------------------------------------------------- /dist/cursors/arrow: -------------------------------------------------------------------------------- 1 | default -------------------------------------------------------------------------------- /dist/cursors/b66166c04f8c3109214a4fbd64a50fc8: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /dist/cursors/bottom_left_corner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/bottom_left_corner -------------------------------------------------------------------------------- /dist/cursors/bottom_right_corner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/bottom_right_corner -------------------------------------------------------------------------------- /dist/cursors/bottom_side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/bottom_side -------------------------------------------------------------------------------- /dist/cursors/cell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/cell -------------------------------------------------------------------------------- /dist/cursors/center_ptr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/center_ptr -------------------------------------------------------------------------------- /dist/cursors/circle: -------------------------------------------------------------------------------- 1 | not-allowed -------------------------------------------------------------------------------- /dist/cursors/closedhand: -------------------------------------------------------------------------------- 1 | dnd-move -------------------------------------------------------------------------------- /dist/cursors/col-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/col-resize -------------------------------------------------------------------------------- /dist/cursors/color-picker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/color-picker -------------------------------------------------------------------------------- /dist/cursors/context-menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/context-menu -------------------------------------------------------------------------------- /dist/cursors/copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/copy -------------------------------------------------------------------------------- /dist/cursors/cross: -------------------------------------------------------------------------------- 1 | crosshair -------------------------------------------------------------------------------- /dist/cursors/crossed_circle: -------------------------------------------------------------------------------- 1 | not-allowed -------------------------------------------------------------------------------- /dist/cursors/crosshair: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/crosshair -------------------------------------------------------------------------------- /dist/cursors/d9ce0ab605698f320427677b458ad60b: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /dist/cursors/default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/default -------------------------------------------------------------------------------- /dist/cursors/dnd-copy: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /dist/cursors/dnd-move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/dnd-move -------------------------------------------------------------------------------- /dist/cursors/dnd-no-drop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/dnd-no-drop -------------------------------------------------------------------------------- /dist/cursors/dnd-none: -------------------------------------------------------------------------------- 1 | dnd-move -------------------------------------------------------------------------------- /dist/cursors/down-arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/down-arrow -------------------------------------------------------------------------------- /dist/cursors/draft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/draft -------------------------------------------------------------------------------- /dist/cursors/e-resize: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /dist/cursors/e29285e634086352946a0e7090d73106: -------------------------------------------------------------------------------- 1 | pointer -------------------------------------------------------------------------------- /dist/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff: -------------------------------------------------------------------------------- 1 | dnd-move -------------------------------------------------------------------------------- /dist/cursors/fleur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/fleur -------------------------------------------------------------------------------- /dist/cursors/forbidden: -------------------------------------------------------------------------------- 1 | no-drop -------------------------------------------------------------------------------- /dist/cursors/grab: -------------------------------------------------------------------------------- 1 | openhand -------------------------------------------------------------------------------- /dist/cursors/grabbing: -------------------------------------------------------------------------------- 1 | dnd-move -------------------------------------------------------------------------------- /dist/cursors/h_double_arrow: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /dist/cursors/half-busy: -------------------------------------------------------------------------------- 1 | progress -------------------------------------------------------------------------------- /dist/cursors/hand1: -------------------------------------------------------------------------------- 1 | pointer -------------------------------------------------------------------------------- /dist/cursors/hand2: -------------------------------------------------------------------------------- 1 | pointer -------------------------------------------------------------------------------- /dist/cursors/help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/help -------------------------------------------------------------------------------- /dist/cursors/ibeam: -------------------------------------------------------------------------------- 1 | text -------------------------------------------------------------------------------- /dist/cursors/left-arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/left-arrow -------------------------------------------------------------------------------- /dist/cursors/left_ptr: -------------------------------------------------------------------------------- 1 | default -------------------------------------------------------------------------------- /dist/cursors/left_ptr_help: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /dist/cursors/left_ptr_watch: -------------------------------------------------------------------------------- 1 | progress -------------------------------------------------------------------------------- /dist/cursors/left_side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/left_side -------------------------------------------------------------------------------- /dist/cursors/link: -------------------------------------------------------------------------------- 1 | alias -------------------------------------------------------------------------------- /dist/cursors/ll_angle: -------------------------------------------------------------------------------- 1 | bottom_left_corner -------------------------------------------------------------------------------- /dist/cursors/lr_angle: -------------------------------------------------------------------------------- 1 | bottom_right_corner -------------------------------------------------------------------------------- /dist/cursors/move: -------------------------------------------------------------------------------- 1 | dnd-move -------------------------------------------------------------------------------- /dist/cursors/n-resize: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /dist/cursors/ne-resize: -------------------------------------------------------------------------------- 1 | top_right_corner -------------------------------------------------------------------------------- /dist/cursors/nesw-resize: -------------------------------------------------------------------------------- 1 | size_bdiag -------------------------------------------------------------------------------- /dist/cursors/no-drop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/no-drop -------------------------------------------------------------------------------- /dist/cursors/not-allowed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/not-allowed -------------------------------------------------------------------------------- /dist/cursors/nw-resize: -------------------------------------------------------------------------------- 1 | top_left_corner -------------------------------------------------------------------------------- /dist/cursors/nwse-resize: -------------------------------------------------------------------------------- 1 | size_fdiag -------------------------------------------------------------------------------- /dist/cursors/openhand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/openhand -------------------------------------------------------------------------------- /dist/cursors/pencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/pencil -------------------------------------------------------------------------------- /dist/cursors/pirate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/pirate -------------------------------------------------------------------------------- /dist/cursors/plus: -------------------------------------------------------------------------------- 1 | cell -------------------------------------------------------------------------------- /dist/cursors/pointer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/pointer -------------------------------------------------------------------------------- /dist/cursors/pointing_hand: -------------------------------------------------------------------------------- 1 | pointer -------------------------------------------------------------------------------- /dist/cursors/progress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/progress -------------------------------------------------------------------------------- /dist/cursors/question_arrow: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /dist/cursors/right-arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/right-arrow -------------------------------------------------------------------------------- /dist/cursors/right_ptr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/right_ptr -------------------------------------------------------------------------------- /dist/cursors/right_side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/right_side -------------------------------------------------------------------------------- /dist/cursors/row-resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/row-resize -------------------------------------------------------------------------------- /dist/cursors/s-resize: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /dist/cursors/sb_h_double_arrow: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /dist/cursors/sb_v_double_arrow: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /dist/cursors/se-resize: -------------------------------------------------------------------------------- 1 | bottom_right_corner -------------------------------------------------------------------------------- /dist/cursors/size_all: -------------------------------------------------------------------------------- 1 | fleur -------------------------------------------------------------------------------- /dist/cursors/size_bdiag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/size_bdiag -------------------------------------------------------------------------------- /dist/cursors/size_fdiag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/size_fdiag -------------------------------------------------------------------------------- /dist/cursors/size_hor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/size_hor -------------------------------------------------------------------------------- /dist/cursors/size_ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/size_ver -------------------------------------------------------------------------------- /dist/cursors/split_h: -------------------------------------------------------------------------------- 1 | col-resize -------------------------------------------------------------------------------- /dist/cursors/split_v: -------------------------------------------------------------------------------- 1 | row-resize -------------------------------------------------------------------------------- /dist/cursors/sw-resize: -------------------------------------------------------------------------------- 1 | bottom_left_corner -------------------------------------------------------------------------------- /dist/cursors/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/text -------------------------------------------------------------------------------- /dist/cursors/top_left_corner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/top_left_corner -------------------------------------------------------------------------------- /dist/cursors/top_right_corner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/top_right_corner -------------------------------------------------------------------------------- /dist/cursors/top_side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/top_side -------------------------------------------------------------------------------- /dist/cursors/ul_angle: -------------------------------------------------------------------------------- 1 | top_left_corner -------------------------------------------------------------------------------- /dist/cursors/up-arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/up-arrow -------------------------------------------------------------------------------- /dist/cursors/ur_angle: -------------------------------------------------------------------------------- 1 | top_right_corner -------------------------------------------------------------------------------- /dist/cursors/v_double_arrow: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /dist/cursors/vertical-text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/vertical-text -------------------------------------------------------------------------------- /dist/cursors/w-resize: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /dist/cursors/wait: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/wait -------------------------------------------------------------------------------- /dist/cursors/watch: -------------------------------------------------------------------------------- 1 | wait -------------------------------------------------------------------------------- /dist/cursors/wayland-cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/wayland-cursor -------------------------------------------------------------------------------- /dist/cursors/whats_this: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /dist/cursors/x-cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/x-cursor -------------------------------------------------------------------------------- /dist/cursors/xterm: -------------------------------------------------------------------------------- 1 | text -------------------------------------------------------------------------------- /dist/cursors/zoom-in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/zoom-in -------------------------------------------------------------------------------- /dist/cursors/zoom-out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/dist/cursors/zoom-out -------------------------------------------------------------------------------- /dist/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name=McMojave Cursors 3 | 4 | -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | 3 | ROOT_UID=0 4 | DEST_DIR= 5 | 6 | # Destination directory 7 | if [ "$UID" -eq "$ROOT_UID" ]; then 8 | DEST_DIR="/usr/share/icons" 9 | else 10 | DEST_DIR="$HOME/.local/share/icons" 11 | fi 12 | 13 | if [ -d "$DEST_DIR/McMojave-cursors" ]; then 14 | rm -r "$DEST_DIR/McMojave-cursors" 15 | fi 16 | 17 | mkdir -p $DEST_DIR && cp -pr dist $DEST_DIR/McMojave-cursors 18 | 19 | echo "Finished..." 20 | 21 | -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinceliuice/McMojave-cursors/7d0bfc1f91028191cdc220b87fd335a235ee4439/preview.png -------------------------------------------------------------------------------- /src/config/alias.cursor: -------------------------------------------------------------------------------- 1 | 24 4 4 x1/alias.png 2 | 30 5 5 x1_25/alias.png 3 | 36 6 6 x1_5/alias.png 4 | 48 8 8 x2/alias.png 5 | -------------------------------------------------------------------------------- /src/config/all-scroll.cursor: -------------------------------------------------------------------------------- 1 | 24 16 16 x1/all-scroll.png 2 | 30 20 20 x1_25/all-scroll.png 3 | 36 24 24 x1_5/all-scroll.png 4 | 48 32 32 x2/all-scroll.png 5 | -------------------------------------------------------------------------------- /src/config/bottom_left_corner.cursor: -------------------------------------------------------------------------------- 1 | 24 4 26 x1/bottom_left_corner.png 2 | 30 5 32 x1_25/bottom_left_corner.png 3 | 36 6 39 x1_5/bottom_left_corner.png 4 | 48 8 52 x2/bottom_left_corner.png 5 | -------------------------------------------------------------------------------- /src/config/bottom_right_corner.cursor: -------------------------------------------------------------------------------- 1 | 24 26 26 x1/bottom_right_corner.png 2 | 30 32 32 x1_25/bottom_right_corner.png 3 | 36 39 39 x1_5/bottom_right_corner.png 4 | 48 52 52 x2/bottom_right_corner.png 5 | -------------------------------------------------------------------------------- /src/config/bottom_side.cursor: -------------------------------------------------------------------------------- 1 | 24 16 28 x1/bottom_side.png 2 | 30 20 35 x1_25/bottom_side.png 3 | 36 24 42 x1_5/bottom_side.png 4 | 48 32 56 x2/bottom_side.png 5 | -------------------------------------------------------------------------------- /src/config/cell.cursor: -------------------------------------------------------------------------------- 1 | 24 16 16 x1/cell.png 2 | 30 20 20 x1_25/cell.png 3 | 36 24 24 x1_5/cell.png 4 | 48 32 32 x2/cell.png 5 | -------------------------------------------------------------------------------- /src/config/center_ptr.cursor: -------------------------------------------------------------------------------- 1 | 24 20 4 x1/center_ptr.png 2 | 30 25 5 x1_25/center_ptr.png 3 | 36 30 6 x1_5/center_ptr.png 4 | 48 40 8 x2/center_ptr.png 5 | -------------------------------------------------------------------------------- /src/config/col-resize.cursor: -------------------------------------------------------------------------------- 1 | 24 16 16 x1/col-resize.png 2 | 30 20 20 x1_25/col-resize.png 3 | 36 24 24 x1_5/col-resize.png 4 | 48 32 32 x2/col-resize.png 5 | -------------------------------------------------------------------------------- /src/config/color-picker.cursor: -------------------------------------------------------------------------------- 1 | 24 4 29 x1/color-picker.png 2 | 30 5 36 x1_25/color-picker.png 3 | 36 6 43 x1_5/color-picker.png 4 | 48 8 58 x2/color-picker.png 5 | -------------------------------------------------------------------------------- /src/config/context-menu.cursor: -------------------------------------------------------------------------------- 1 | 24 4 4 x1/context-menu.png 2 | 30 5 5 x1_25/context-menu.png 3 | 36 6 6 x1_5/context-menu.png 4 | 48 8 8 x2/context-menu.png 5 | -------------------------------------------------------------------------------- /src/config/copy.cursor: -------------------------------------------------------------------------------- 1 | 24 4 4 x1/copy.png 2 | 30 5 5 x1_25/copy.png 3 | 36 6 6 x1_5/copy.png 4 | 48 8 8 x2/copy.png 5 | -------------------------------------------------------------------------------- /src/config/crosshair.cursor: -------------------------------------------------------------------------------- 1 | 24 16 16 x1/crosshair.png 2 | 30 20 20 x1_25/crosshair.png 3 | 36 24 24 x1_5/crosshair.png 4 | 48 32 32 x2/crosshair.png 5 | -------------------------------------------------------------------------------- /src/config/default.cursor: -------------------------------------------------------------------------------- 1 | 24 4 4 x1/default.png 2 | 30 5 5 x1_25/default.png 3 | 36 6 6 x1_5/default.png 4 | 48 8 8 x2/default.png 5 | -------------------------------------------------------------------------------- /src/config/dnd-move.cursor: -------------------------------------------------------------------------------- 1 | 24 16 16 x1/dnd-move.png 2 | 30 20 20 x1_25/dnd-move.png 3 | 36 24 24 x1_5/dnd-move.png 4 | 48 32 32 x2/dnd-move.png 5 | -------------------------------------------------------------------------------- /src/config/dnd-no-drop.cursor: -------------------------------------------------------------------------------- 1 | 24 16 16 x1/dnd-no-drop.png 2 | 30 20 20 x1_25/dnd-no-drop.png 3 | 36 24 24 x1_5/dnd-no-drop.png 4 | 48 32 32 x2/dnd-no-drop.png 5 | -------------------------------------------------------------------------------- /src/config/down-arrow.cursor: -------------------------------------------------------------------------------- 1 | 24 16 28 x1/down-arrow.png 2 | 30 20 35 x1_25/down-arrow.png 3 | 36 24 42 x1_5/down-arrow.png 4 | 48 32 56 x2/down-arrow.png 5 | -------------------------------------------------------------------------------- /src/config/draft.cursor: -------------------------------------------------------------------------------- 1 | 24 4 29 x1/draft.png 2 | 30 5 36 x1_25/draft.png 3 | 36 6 43 x1_5/draft.png 4 | 48 8 58 x2/draft.png 5 | -------------------------------------------------------------------------------- /src/config/fleur.cursor: -------------------------------------------------------------------------------- 1 | 24 16 16 x1/fleur.png 2 | 30 20 20 x1_25/fleur.png 3 | 36 24 24 x1_5/fleur.png 4 | 48 32 32 x2/fleur.png 5 | -------------------------------------------------------------------------------- /src/config/help.cursor: -------------------------------------------------------------------------------- 1 | 24 4 4 x1/help.png 2 | 30 5 5 x1_25/help.png 3 | 36 6 6 x1_5/help.png 4 | 48 8 8 x2/help.png 5 | -------------------------------------------------------------------------------- /src/config/left-arrow.cursor: -------------------------------------------------------------------------------- 1 | 24 4 16 x1/left-arrow.png 2 | 30 5 20 x1_25/left-arrow.png 3 | 36 6 24 x1_5/left-arrow.png 4 | 48 8 32 x2/left-arrow.png 5 | -------------------------------------------------------------------------------- /src/config/left_side.cursor: -------------------------------------------------------------------------------- 1 | 24 4 16 x1/left_side.png 2 | 30 5 20 x1_25/left_side.png 3 | 36 6 24 x1_5/left_side.png 4 | 48 8 32 x2/left_side.png 5 | -------------------------------------------------------------------------------- /src/config/no-drop.cursor: -------------------------------------------------------------------------------- 1 | 24 4 4 x1/no-drop.png 2 | 30 5 5 x1_25/no-drop.png 3 | 36 6 6 x1_5/no-drop.png 4 | 48 8 8 x2/no-drop.png 5 | -------------------------------------------------------------------------------- /src/config/not-allowed.cursor: -------------------------------------------------------------------------------- 1 | 24 16 16 x1/not-allowed.png 2 | 30 20 20 x1_25/not-allowed.png 3 | 36 24 24 x1_5/not-allowed.png 4 | 48 32 32 x2/not-allowed.png 5 | -------------------------------------------------------------------------------- /src/config/openhand.cursor: -------------------------------------------------------------------------------- 1 | 24 16 16 x1/openhand.png 2 | 30 20 20 x1_25/openhand.png 3 | 36 24 24 x1_5/openhand.png 4 | 48 32 32 x2/openhand.png 5 | -------------------------------------------------------------------------------- /src/config/pencil.cursor: -------------------------------------------------------------------------------- 1 | 24 4 29 x1/pencil.png 2 | 30 5 36 x1_25/pencil.png 3 | 36 6 43 x1_5/pencil.png 4 | 48 8 58 x2/pencil.png 5 | -------------------------------------------------------------------------------- /src/config/pirate.cursor: -------------------------------------------------------------------------------- 1 | 24 16 16 x1/pirate.png 2 | 30 20 20 x1_25/pirate.png 3 | 36 24 24 x1_5/pirate.png 4 | 48 32 32 x2/pirate.png 5 | -------------------------------------------------------------------------------- /src/config/pointer.cursor: -------------------------------------------------------------------------------- 1 | 24 16 4 x1/pointer.png 2 | 30 20 5 x1_25/pointer.png 3 | 36 24 6 x1_5/pointer.png 4 | 48 32 8 x2/pointer.png 5 | -------------------------------------------------------------------------------- /src/config/progress.cursor: -------------------------------------------------------------------------------- 1 | 24 4 4 x1/progress-01.png 30 2 | 24 4 4 x1/progress-02.png 30 3 | 24 4 4 x1/progress-03.png 30 4 | 24 4 4 x1/progress-04.png 30 5 | 24 4 4 x1/progress-05.png 30 6 | 24 4 4 x1/progress-06.png 30 7 | 24 4 4 x1/progress-07.png 30 8 | 24 4 4 x1/progress-08.png 30 9 | 24 4 4 x1/progress-09.png 30 10 | 24 4 4 x1/progress-10.png 30 11 | 24 4 4 x1/progress-11.png 30 12 | 24 4 4 x1/progress-12.png 30 13 | 24 4 4 x1/progress-13.png 30 14 | 24 4 4 x1/progress-14.png 30 15 | 24 4 4 x1/progress-15.png 30 16 | 24 4 4 x1/progress-16.png 30 17 | 24 4 4 x1/progress-17.png 30 18 | 24 4 4 x1/progress-18.png 30 19 | 24 4 4 x1/progress-19.png 30 20 | 24 4 4 x1/progress-20.png 30 21 | 24 4 4 x1/progress-21.png 30 22 | 24 4 4 x1/progress-22.png 30 23 | 24 4 4 x1/progress-23.png 30 24 | 30 5 5 x1_25/progress-01.png 30 25 | 30 5 5 x1_25/progress-02.png 30 26 | 30 5 5 x1_25/progress-03.png 30 27 | 30 5 5 x1_25/progress-04.png 30 28 | 30 5 5 x1_25/progress-05.png 30 29 | 30 5 5 x1_25/progress-06.png 30 30 | 30 5 5 x1_25/progress-07.png 30 31 | 30 5 5 x1_25/progress-08.png 30 32 | 30 5 5 x1_25/progress-09.png 30 33 | 30 5 5 x1_25/progress-10.png 30 34 | 30 5 5 x1_25/progress-11.png 30 35 | 30 5 5 x1_25/progress-12.png 30 36 | 30 5 5 x1_25/progress-13.png 30 37 | 30 5 5 x1_25/progress-14.png 30 38 | 30 5 5 x1_25/progress-15.png 30 39 | 30 5 5 x1_25/progress-16.png 30 40 | 30 5 5 x1_25/progress-17.png 30 41 | 30 5 5 x1_25/progress-18.png 30 42 | 30 5 5 x1_25/progress-19.png 30 43 | 30 5 5 x1_25/progress-20.png 30 44 | 30 5 5 x1_25/progress-21.png 30 45 | 30 5 5 x1_25/progress-22.png 30 46 | 30 5 5 x1_25/progress-23.png 30 47 | 36 6 6 x1_5/progress-01.png 30 48 | 36 6 6 x1_5/progress-02.png 30 49 | 36 6 6 x1_5/progress-03.png 30 50 | 36 6 6 x1_5/progress-04.png 30 51 | 36 6 6 x1_5/progress-05.png 30 52 | 36 6 6 x1_5/progress-06.png 30 53 | 36 6 6 x1_5/progress-07.png 30 54 | 36 6 6 x1_5/progress-08.png 30 55 | 36 6 6 x1_5/progress-09.png 30 56 | 36 6 6 x1_5/progress-10.png 30 57 | 36 6 6 x1_5/progress-11.png 30 58 | 36 6 6 x1_5/progress-12.png 30 59 | 36 6 6 x1_5/progress-13.png 30 60 | 36 6 6 x1_5/progress-14.png 30 61 | 36 6 6 x1_5/progress-15.png 30 62 | 36 6 6 x1_5/progress-16.png 30 63 | 36 6 6 x1_5/progress-17.png 30 64 | 36 6 6 x1_5/progress-18.png 30 65 | 36 6 6 x1_5/progress-19.png 30 66 | 36 6 6 x1_5/progress-20.png 30 67 | 36 6 6 x1_5/progress-21.png 30 68 | 36 6 6 x1_5/progress-22.png 30 69 | 36 6 6 x1_5/progress-23.png 30 70 | 48 8 8 x2/progress-01.png 30 71 | 48 8 8 x2/progress-02.png 30 72 | 48 8 8 x2/progress-03.png 30 73 | 48 8 8 x2/progress-04.png 30 74 | 48 8 8 x2/progress-05.png 30 75 | 48 8 8 x2/progress-06.png 30 76 | 48 8 8 x2/progress-07.png 30 77 | 48 8 8 x2/progress-08.png 30 78 | 48 8 8 x2/progress-09.png 30 79 | 48 8 8 x2/progress-10.png 30 80 | 48 8 8 x2/progress-11.png 30 81 | 48 8 8 x2/progress-12.png 30 82 | 48 8 8 x2/progress-13.png 30 83 | 48 8 8 x2/progress-14.png 30 84 | 48 8 8 x2/progress-15.png 30 85 | 48 8 8 x2/progress-16.png 30 86 | 48 8 8 x2/progress-17.png 30 87 | 48 8 8 x2/progress-18.png 30 88 | 48 8 8 x2/progress-19.png 30 89 | 48 8 8 x2/progress-20.png 30 90 | 48 8 8 x2/progress-21.png 30 91 | 48 8 8 x2/progress-22.png 30 92 | 48 8 8 x2/progress-23.png 30 93 | -------------------------------------------------------------------------------- /src/config/right-arrow.cursor: -------------------------------------------------------------------------------- 1 | 24 28 16 x1/right-arrow.png 2 | 30 35 20 x1_25/right-arrow.png 3 | 36 42 24 x1_5/right-arrow.png 4 | 48 56 32 x2/right-arrow.png 5 | -------------------------------------------------------------------------------- /src/config/right_ptr.cursor: -------------------------------------------------------------------------------- 1 | 24 28 4 x1/right_ptr.png 2 | 30 35 5 x1_25/right_ptr.png 3 | 36 42 6 x1_5/right_ptr.png 4 | 48 56 8 x2/right_ptr.png 5 | -------------------------------------------------------------------------------- /src/config/right_side.cursor: -------------------------------------------------------------------------------- 1 | 24 28 16 x1/right_side.png 2 | 30 35 20 x1_25/right_side.png 3 | 36 42 24 x1_5/right_side.png 4 | 48 56 32 x2/right_side.png 5 | -------------------------------------------------------------------------------- /src/config/row-resize.cursor: -------------------------------------------------------------------------------- 1 | 24 16 16 x1/row-resize.png 2 | 30 20 20 x1_25/row-resize.png 3 | 36 24 24 x1_5/row-resize.png 4 | 48 32 32 x2/row-resize.png 5 | -------------------------------------------------------------------------------- /src/config/size_bdiag.cursor: -------------------------------------------------------------------------------- 1 | 24 16 16 x1/size_bdiag.png 2 | 30 20 20 x1_25/size_bdiag.png 3 | 36 24 24 x1_5/size_bdiag.png 4 | 48 32 32 x2/size_bdiag.png 5 | -------------------------------------------------------------------------------- /src/config/size_fdiag.cursor: -------------------------------------------------------------------------------- 1 | 24 16 16 x1/size_fdiag.png 2 | 30 20 20 x1_25/size_fdiag.png 3 | 36 24 24 x1_5/size_fdiag.png 4 | 48 32 32 x2/size_fdiag.png 5 | -------------------------------------------------------------------------------- /src/config/size_hor.cursor: -------------------------------------------------------------------------------- 1 | 24 16 16 x1/size_hor.png 2 | 30 20 20 x1_25/size_hor.png 3 | 36 24 24 x1_5/size_hor.png 4 | 48 32 32 x2/size_hor.png 5 | -------------------------------------------------------------------------------- /src/config/size_ver.cursor: -------------------------------------------------------------------------------- 1 | 24 16 16 x1/size_ver.png 2 | 30 20 20 x1_25/size_ver.png 3 | 36 24 24 x1_5/size_ver.png 4 | 48 32 32 x2/size_ver.png 5 | -------------------------------------------------------------------------------- /src/config/text.cursor: -------------------------------------------------------------------------------- 1 | 24 16 16 x1/text.png 2 | 30 20 20 x1_25/text.png 3 | 36 24 24 x1_5/text.png 4 | 48 32 32 x2/text.png 5 | -------------------------------------------------------------------------------- /src/config/top_left_corner.cursor: -------------------------------------------------------------------------------- 1 | 24 5 4 x1/top_left_corner.png 2 | 30 6 5 x1_25/top_left_corner.png 3 | 36 7 6 x1_5/top_left_corner.png 4 | 48 10 8 x2/top_left_corner.png 5 | -------------------------------------------------------------------------------- /src/config/top_right_corner.cursor: -------------------------------------------------------------------------------- 1 | 24 26 4 x1/top_right_corner.png 2 | 30 32 5 x1_25/top_right_corner.png 3 | 36 39 6 x1_5/top_right_corner.png 4 | 48 52 8 x2/top_right_corner.png 5 | -------------------------------------------------------------------------------- /src/config/top_side.cursor: -------------------------------------------------------------------------------- 1 | 24 16 4 x1/top_side.png 2 | 30 20 5 x1_25/top_side.png 3 | 36 24 6 x1_5/top_side.png 4 | 48 32 8 x2/top_side.png 5 | -------------------------------------------------------------------------------- /src/config/up-arrow.cursor: -------------------------------------------------------------------------------- 1 | 24 16 4 x1/up-arrow.png 2 | 30 20 5 x1_25/up-arrow.png 3 | 36 24 6 x1_5/up-arrow.png 4 | 48 32 8 x2/up-arrow.png 5 | -------------------------------------------------------------------------------- /src/config/vertical-text.cursor: -------------------------------------------------------------------------------- 1 | 24 16 16 x1/vertical-text.png 2 | 30 20 20 x1_25/vertical-text.png 3 | 36 24 24 x1_5/vertical-text.png 4 | 48 32 32 x2/vertical-text.png 5 | -------------------------------------------------------------------------------- /src/config/wait.cursor: -------------------------------------------------------------------------------- 1 | 24 16 16 x1/wait-01.png 30 2 | 24 16 16 x1/wait-02.png 30 3 | 24 16 16 x1/wait-03.png 30 4 | 24 16 16 x1/wait-04.png 30 5 | 24 16 16 x1/wait-05.png 30 6 | 24 16 16 x1/wait-06.png 30 7 | 24 16 16 x1/wait-07.png 30 8 | 24 16 16 x1/wait-08.png 30 9 | 24 16 16 x1/wait-09.png 30 10 | 24 16 16 x1/wait-10.png 30 11 | 24 16 16 x1/wait-11.png 30 12 | 24 16 16 x1/wait-12.png 30 13 | 24 16 16 x1/wait-13.png 30 14 | 24 16 16 x1/wait-14.png 30 15 | 24 16 16 x1/wait-15.png 30 16 | 24 16 16 x1/wait-16.png 30 17 | 24 16 16 x1/wait-17.png 30 18 | 24 16 16 x1/wait-18.png 30 19 | 24 16 16 x1/wait-19.png 30 20 | 24 16 16 x1/wait-20.png 30 21 | 24 16 16 x1/wait-21.png 30 22 | 24 16 16 x1/wait-22.png 30 23 | 24 16 16 x1/wait-23.png 30 24 | 30 20 20 x1_25/wait-01.png 30 25 | 30 20 20 x1_25/wait-02.png 30 26 | 30 20 20 x1_25/wait-03.png 30 27 | 30 20 20 x1_25/wait-04.png 30 28 | 30 20 20 x1_25/wait-05.png 30 29 | 30 20 20 x1_25/wait-06.png 30 30 | 30 20 20 x1_25/wait-07.png 30 31 | 30 20 20 x1_25/wait-08.png 30 32 | 30 20 20 x1_25/wait-09.png 30 33 | 30 20 20 x1_25/wait-10.png 30 34 | 30 20 20 x1_25/wait-11.png 30 35 | 30 20 20 x1_25/wait-12.png 30 36 | 30 20 20 x1_25/wait-13.png 30 37 | 30 20 20 x1_25/wait-14.png 30 38 | 30 20 20 x1_25/wait-15.png 30 39 | 30 20 20 x1_25/wait-16.png 30 40 | 30 20 20 x1_25/wait-17.png 30 41 | 30 20 20 x1_25/wait-18.png 30 42 | 30 20 20 x1_25/wait-19.png 30 43 | 30 20 20 x1_25/wait-20.png 30 44 | 30 20 20 x1_25/wait-21.png 30 45 | 30 20 20 x1_25/wait-22.png 30 46 | 30 20 20 x1_25/wait-23.png 30 47 | 36 24 24 x1_5/wait-01.png 30 48 | 36 24 24 x1_5/wait-02.png 30 49 | 36 24 24 x1_5/wait-03.png 30 50 | 36 24 24 x1_5/wait-04.png 30 51 | 36 24 24 x1_5/wait-05.png 30 52 | 36 24 24 x1_5/wait-06.png 30 53 | 36 24 24 x1_5/wait-07.png 30 54 | 36 24 24 x1_5/wait-08.png 30 55 | 36 24 24 x1_5/wait-09.png 30 56 | 36 24 24 x1_5/wait-10.png 30 57 | 36 24 24 x1_5/wait-11.png 30 58 | 36 24 24 x1_5/wait-12.png 30 59 | 36 24 24 x1_5/wait-13.png 30 60 | 36 24 24 x1_5/wait-14.png 30 61 | 36 24 24 x1_5/wait-15.png 30 62 | 36 24 24 x1_5/wait-16.png 30 63 | 36 24 24 x1_5/wait-17.png 30 64 | 36 24 24 x1_5/wait-18.png 30 65 | 36 24 24 x1_5/wait-19.png 30 66 | 36 24 24 x1_5/wait-20.png 30 67 | 36 24 24 x1_5/wait-21.png 30 68 | 36 24 24 x1_5/wait-22.png 30 69 | 36 24 24 x1_5/wait-23.png 30 70 | 48 32 32 x2/wait-01.png 30 71 | 48 32 32 x2/wait-02.png 30 72 | 48 32 32 x2/wait-03.png 30 73 | 48 32 32 x2/wait-04.png 30 74 | 48 32 32 x2/wait-05.png 30 75 | 48 32 32 x2/wait-06.png 30 76 | 48 32 32 x2/wait-07.png 30 77 | 48 32 32 x2/wait-08.png 30 78 | 48 32 32 x2/wait-09.png 30 79 | 48 32 32 x2/wait-10.png 30 80 | 48 32 32 x2/wait-11.png 30 81 | 48 32 32 x2/wait-12.png 30 82 | 48 32 32 x2/wait-13.png 30 83 | 48 32 32 x2/wait-14.png 30 84 | 48 32 32 x2/wait-15.png 30 85 | 48 32 32 x2/wait-16.png 30 86 | 48 32 32 x2/wait-17.png 30 87 | 48 32 32 x2/wait-18.png 30 88 | 48 32 32 x2/wait-19.png 30 89 | 48 32 32 x2/wait-20.png 30 90 | 48 32 32 x2/wait-21.png 30 91 | 48 32 32 x2/wait-22.png 30 92 | 48 32 32 x2/wait-23.png 30 93 | -------------------------------------------------------------------------------- /src/config/wayland-cursor.cursor: -------------------------------------------------------------------------------- 1 | 24 16 16 x1/wayland-cursor.png 2 | 30 20 20 x1_25/wayland-cursor.png 3 | 36 24 24 x1_5/wayland-cursor.png 4 | 48 32 32 x2/wayland-cursor.png 5 | -------------------------------------------------------------------------------- /src/config/x-cursor.cursor: -------------------------------------------------------------------------------- 1 | 24 16 16 x1/x-cursor.png 2 | 30 20 20 x1_25/x-cursor.png 3 | 36 24 24 x1_5/x-cursor.png 4 | 48 32 32 x2/x-cursor.png 5 | -------------------------------------------------------------------------------- /src/config/zoom-in.cursor: -------------------------------------------------------------------------------- 1 | 24 16 16 x1/zoom-in.png 2 | 30 20 20 x1_25/zoom-in.png 3 | 36 24 24 x1_5/zoom-in.png 4 | 48 32 32 x2/zoom-in.png 5 | -------------------------------------------------------------------------------- /src/config/zoom-out.cursor: -------------------------------------------------------------------------------- 1 | 24 16 16 x1/zoom-out.png 2 | 30 20 20 x1_25/zoom-out.png 3 | 36 24 24 x1_5/zoom-out.png 4 | 48 32 32 x2/zoom-out.png 5 | -------------------------------------------------------------------------------- /src/cursorList: -------------------------------------------------------------------------------- 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=McMojave Cursors 3 | 4 | -------------------------------------------------------------------------------- /src/svg/alias.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /src/svg/all-scroll.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/svg/bottom_left_corner.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/svg/bottom_right_corner.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /src/svg/bottom_side.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /src/svg/cell.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /src/svg/center_ptr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/svg/col-resize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /src/svg/context-menu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /src/svg/copy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /src/svg/crosshair.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/svg/default.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /src/svg/dnd-move.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /src/svg/dnd-no-drop.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /src/svg/down-arrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /src/svg/fleur.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/svg/help.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /src/svg/left-arrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /src/svg/left_side.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /src/svg/no-drop.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /src/svg/not-allowed.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 19 | 21 | 29 | 33 | 34 | 35 | 54 | 56 | 57 | 59 | image/svg+xml 60 | 62 | 63 | 64 | 65 | 66 | 70 | 77 | 82 | 89 | 94 | 95 | 96 | 97 | -------------------------------------------------------------------------------- /src/svg/openhand.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/svg/pencil.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 19 | 21 | 29 | 33 | 34 | 35 | 49 | 51 | 52 | 54 | image/svg+xml 55 | 57 | 58 | 59 | 60 | 61 | 66 | 73 | 79 | 84 | 90 | 91 | 92 | 93 | -------------------------------------------------------------------------------- /src/svg/pointer.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /src/svg/progress-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /src/svg/progress-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /src/svg/progress-03.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /src/svg/progress-04.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /src/svg/progress-05.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /src/svg/progress-06.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /src/svg/progress-07.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /src/svg/progress-13.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /src/svg/progress-14.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /src/svg/progress-20.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /src/svg/progress.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /src/svg/right-arrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /src/svg/right_ptr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/svg/right_side.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /src/svg/row-resize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /src/svg/size_bdiag.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/svg/size_fdiag.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/svg/size_hor.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /src/svg/size_ver.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /src/svg/text.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/svg/top_left_corner.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/svg/top_right_corner.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/svg/top_side.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /src/svg/up-arrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /src/svg/vertical-text.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/svg/zoom-in.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 19 | 21 | 29 | 33 | 34 | 35 | 49 | 51 | 52 | 54 | image/svg+xml 55 | 57 | 58 | 59 | 60 | 61 | 66 | 73 | 78 | 83 | 88 | 95 | 100 | 101 | 102 | 103 | -------------------------------------------------------------------------------- /src/svg/zoom-out.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 19 | 21 | 29 | 33 | 34 | 35 | 49 | 51 | 52 | 54 | image/svg+xml 55 | 57 | 58 | 59 | 60 | 61 | 66 | 73 | 78 | 83 | 88 | 95 | 102 | 103 | 104 | 105 | --------------------------------------------------------------------------------