├── .github
├── FUNDING.yml
└── workflows
│ └── main.yml
├── assets
├── parts.png
├── banner.png
├── preview.png
├── sprite.png
├── grid sizes.png
├── phingers.png
├── sprite__24.png
├── sprite__32.png
├── sprite__48.png
├── sprite__64.png
├── sprite__96.png
├── sprite__128.png
└── svg
│ ├── 24
│ ├── default
│ │ ├── cell.svg
│ │ ├── ul_angle.svg
│ │ ├── top_tee.svg
│ │ ├── ur_angle.svg
│ │ ├── left_tee.svg
│ │ ├── lr_angle.svg
│ │ ├── bottom_tee.svg
│ │ ├── left_ptr.svg
│ │ ├── right_tee.svg
│ │ ├── up-arrow.svg
│ │ ├── right_ptr.svg
│ │ ├── down-arrow.svg
│ │ ├── left-arrow.svg
│ │ ├── right-arrow.svg
│ │ ├── cross.svg
│ │ ├── ll_angle.svg
│ │ ├── not-allowed.svg
│ │ ├── center_ptr.svg
│ │ ├── copy.svg
│ │ ├── alias.svg
│ │ ├── no-drop.svg
│ │ ├── crosshair.svg
│ │ ├── vertical-text.svg
│ │ ├── text.svg
│ │ ├── help.svg
│ │ ├── top_side.svg
│ │ ├── top_left_corner.svg
│ │ └── top_right_corner.svg
│ └── light
│ │ ├── cell.svg
│ │ ├── ul_angle.svg
│ │ ├── top_tee.svg
│ │ ├── ur_angle.svg
│ │ ├── lr_angle.svg
│ │ ├── left_tee.svg
│ │ ├── bottom_tee.svg
│ │ ├── left_ptr.svg
│ │ ├── right_tee.svg
│ │ ├── right_ptr.svg
│ │ ├── up-arrow.svg
│ │ ├── down-arrow.svg
│ │ ├── left-arrow.svg
│ │ ├── right-arrow.svg
│ │ ├── ll_angle.svg
│ │ ├── cross.svg
│ │ ├── not-allowed.svg
│ │ ├── center_ptr.svg
│ │ ├── copy.svg
│ │ ├── alias.svg
│ │ ├── no-drop.svg
│ │ ├── crosshair.svg
│ │ ├── vertical-text.svg
│ │ ├── text.svg
│ │ ├── help.svg
│ │ ├── top_left_corner.svg
│ │ ├── right_side.svg
│ │ ├── top_right_corner.svg
│ │ └── top_side.svg
│ └── 32
│ ├── default
│ ├── cell.svg
│ ├── top_tee.svg
│ ├── ul_angle.svg
│ ├── left_tee.svg
│ ├── lr_angle.svg
│ ├── bottom_tee.svg
│ ├── center_ptr.svg
│ ├── right_tee.svg
│ ├── up-arrow.svg
│ ├── down-arrow.svg
│ ├── left-arrow.svg
│ ├── right-arrow.svg
│ ├── cross.svg
│ ├── right_ptr.svg
│ ├── ur_angle.svg
│ ├── not-allowed.svg
│ ├── ll_angle.svg
│ ├── left_ptr.svg
│ ├── copy.svg
│ ├── alias.svg
│ ├── crosshair.svg
│ ├── no-drop.svg
│ ├── vertical-text.svg
│ ├── text.svg
│ ├── wayland.svg
│ ├── help.svg
│ ├── left_side.svg
│ ├── right_side.svg
│ └── bottom_side.svg
│ └── light
│ ├── cell.svg
│ ├── top_tee.svg
│ ├── ul_angle.svg
│ ├── lr_angle.svg
│ ├── left_tee.svg
│ ├── center_ptr.svg
│ ├── bottom_tee.svg
│ ├── right_tee.svg
│ ├── up-arrow.svg
│ ├── down-arrow.svg
│ ├── left-arrow.svg
│ ├── right-arrow.svg
│ ├── cross.svg
│ ├── right_ptr.svg
│ ├── ur_angle.svg
│ ├── ll_angle.svg
│ ├── not-allowed.svg
│ ├── left_ptr.svg
│ ├── copy.svg
│ ├── alias.svg
│ ├── crosshair.svg
│ ├── no-drop.svg
│ ├── vertical-text.svg
│ ├── text.svg
│ ├── help.svg
│ ├── wayland.svg
│ ├── left_side.svg
│ ├── right_side.svg
│ └── bottom_side.svg
├── phinger-cursors.fig
└── README.md
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | github: [phisch]
2 |
--------------------------------------------------------------------------------
/assets/parts.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/talwat/everforest-cursors/HEAD/assets/parts.png
--------------------------------------------------------------------------------
/assets/banner.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/talwat/everforest-cursors/HEAD/assets/banner.png
--------------------------------------------------------------------------------
/assets/preview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/talwat/everforest-cursors/HEAD/assets/preview.png
--------------------------------------------------------------------------------
/assets/sprite.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/talwat/everforest-cursors/HEAD/assets/sprite.png
--------------------------------------------------------------------------------
/assets/grid sizes.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/talwat/everforest-cursors/HEAD/assets/grid sizes.png
--------------------------------------------------------------------------------
/assets/phingers.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/talwat/everforest-cursors/HEAD/assets/phingers.png
--------------------------------------------------------------------------------
/assets/sprite__24.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/talwat/everforest-cursors/HEAD/assets/sprite__24.png
--------------------------------------------------------------------------------
/assets/sprite__32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/talwat/everforest-cursors/HEAD/assets/sprite__32.png
--------------------------------------------------------------------------------
/assets/sprite__48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/talwat/everforest-cursors/HEAD/assets/sprite__48.png
--------------------------------------------------------------------------------
/assets/sprite__64.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/talwat/everforest-cursors/HEAD/assets/sprite__64.png
--------------------------------------------------------------------------------
/assets/sprite__96.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/talwat/everforest-cursors/HEAD/assets/sprite__96.png
--------------------------------------------------------------------------------
/phinger-cursors.fig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/talwat/everforest-cursors/HEAD/phinger-cursors.fig
--------------------------------------------------------------------------------
/assets/sprite__128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/talwat/everforest-cursors/HEAD/assets/sprite__128.png
--------------------------------------------------------------------------------
/assets/svg/32/default/cell.svg:
--------------------------------------------------------------------------------
1 |
23 |
--------------------------------------------------------------------------------
/assets/svg/32/light/cell.svg:
--------------------------------------------------------------------------------
1 |
23 |
--------------------------------------------------------------------------------
/assets/svg/24/default/cell.svg:
--------------------------------------------------------------------------------
1 |
23 |
--------------------------------------------------------------------------------
/assets/svg/24/light/cell.svg:
--------------------------------------------------------------------------------
1 |
23 |
--------------------------------------------------------------------------------
/assets/svg/24/default/ul_angle.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/24/light/ul_angle.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/24/light/top_tee.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/32/light/top_tee.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/24/default/top_tee.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/32/default/top_tee.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/32/light/ul_angle.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/32/default/ul_angle.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/24/default/ur_angle.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/24/light/ur_angle.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/24/light/lr_angle.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/32/light/lr_angle.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/24/default/left_tee.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/24/default/lr_angle.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/24/light/left_tee.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/32/default/left_tee.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/32/default/lr_angle.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/32/light/left_tee.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/32/light/center_ptr.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/24/default/bottom_tee.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/24/light/bottom_tee.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/24/light/left_ptr.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/24/light/right_tee.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/32/default/bottom_tee.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/32/default/center_ptr.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/32/light/bottom_tee.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/32/light/right_tee.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/24/default/left_ptr.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/24/default/right_tee.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/32/default/right_tee.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/32/default/up-arrow.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/32/light/up-arrow.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/24/default/up-arrow.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/24/light/right_ptr.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/24/light/up-arrow.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/32/default/down-arrow.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/32/default/left-arrow.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/32/light/down-arrow.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/32/light/left-arrow.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/32/light/right-arrow.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/24/default/right_ptr.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/32/default/right-arrow.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/24/default/down-arrow.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/24/default/left-arrow.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/24/default/right-arrow.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/24/light/down-arrow.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/24/light/left-arrow.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/24/light/right-arrow.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/24/light/ll_angle.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/24/default/cross.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/24/default/ll_angle.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/24/light/cross.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/32/default/cross.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/32/light/cross.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/32/light/right_ptr.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/32/default/right_ptr.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/32/default/ur_angle.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/32/light/ur_angle.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/24/light/not-allowed.svg:
--------------------------------------------------------------------------------
1 |
26 |
--------------------------------------------------------------------------------
/assets/svg/32/default/not-allowed.svg:
--------------------------------------------------------------------------------
1 |
26 |
--------------------------------------------------------------------------------
/assets/svg/32/light/ll_angle.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/32/light/not-allowed.svg:
--------------------------------------------------------------------------------
1 |
26 |
--------------------------------------------------------------------------------
/assets/svg/24/default/not-allowed.svg:
--------------------------------------------------------------------------------
1 |
26 |
--------------------------------------------------------------------------------
/assets/svg/32/default/ll_angle.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/24/light/center_ptr.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/24/default/center_ptr.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/24/default/copy.svg:
--------------------------------------------------------------------------------
1 |
27 |
--------------------------------------------------------------------------------
/assets/svg/24/light/copy.svg:
--------------------------------------------------------------------------------
1 |
27 |
--------------------------------------------------------------------------------
/assets/svg/32/default/left_ptr.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/32/light/left_ptr.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/24/default/alias.svg:
--------------------------------------------------------------------------------
1 |
27 |
--------------------------------------------------------------------------------
/assets/svg/24/light/alias.svg:
--------------------------------------------------------------------------------
1 |
27 |
--------------------------------------------------------------------------------
/assets/svg/32/default/copy.svg:
--------------------------------------------------------------------------------
1 |
27 |
--------------------------------------------------------------------------------
/assets/svg/32/light/copy.svg:
--------------------------------------------------------------------------------
1 |
27 |
--------------------------------------------------------------------------------
/assets/svg/24/default/no-drop.svg:
--------------------------------------------------------------------------------
1 |
27 |
--------------------------------------------------------------------------------
/assets/svg/24/light/no-drop.svg:
--------------------------------------------------------------------------------
1 |
27 |
--------------------------------------------------------------------------------
/assets/svg/32/default/alias.svg:
--------------------------------------------------------------------------------
1 |
27 |
--------------------------------------------------------------------------------
/assets/svg/32/light/alias.svg:
--------------------------------------------------------------------------------
1 |
27 |
--------------------------------------------------------------------------------
/.github/workflows/main.yml:
--------------------------------------------------------------------------------
1 | permissions:
2 | contents: write
3 |
4 | on: workflow_dispatch
5 |
6 | jobs:
7 | generate_cursor_theme_job:
8 | runs-on: ubuntu-latest
9 | name: Build everforest-cursors, publish assets and draft release
10 | steps:
11 | - name: Checkout repository
12 | uses: actions/checkout@v2
13 |
14 | - name: Generate variants and assets from Figma file
15 | id: figma_cursor_theme
16 | uses: phisch/figma-cursor-theme-action@v1.1
17 | with:
18 | figma_access_token: ${{ secrets.FIGMA_ACCESS_TOKEN }}
19 | figma_file_key: ${{ secrets.FIGMA_FILE_KEY }}
20 | alias_component_set_id: '2:8'
21 | sprite_component_set_id: '2:6'
22 | theme_name: 'Everforest cursors'
23 | theme_comment: 'Everforest cursors, based on phinger-cursors.'
24 | theme_directory: 'build/themes'
25 | export_directory: 'build/exports'
26 | svg_directory: 'build/exports/svg'
27 |
28 | - name: Update assets
29 | run: |
30 | rm -rf assets
31 | mv build/exports assets
32 |
33 | - name: Push updated assets
34 | uses: EndBug/add-and-commit@v7
35 | with:
36 | add: 'assets'
37 | default_author: github_actor
38 | message: 'updated assets from figma file version ${{ steps.figma_cursor_theme.outputs.version }}'
39 |
40 | - name: Compress variants
41 | run: tar -cjf build/everforest-cursors-variants.tar.bz2 -C build/themes .
42 |
43 | - name: Upload cursor variants artifact
44 | uses: actions/upload-artifact@v2
45 | with:
46 | name: everforest-cursors-variants
47 | path: build/everforest-cursors-variants.tar.bz2
48 |
49 | - name: Draft Release
50 | uses: softprops/action-gh-release@v1
51 | with:
52 | files: build/everforest-cursors-variants.tar.bz2
53 | draft: false
54 | tag_name: ${{ steps.figma_cursor_theme.outputs.version }}
55 |
--------------------------------------------------------------------------------
/assets/svg/24/default/crosshair.svg:
--------------------------------------------------------------------------------
1 |
34 |
--------------------------------------------------------------------------------
/assets/svg/24/light/crosshair.svg:
--------------------------------------------------------------------------------
1 |
34 |
--------------------------------------------------------------------------------
/assets/svg/32/default/crosshair.svg:
--------------------------------------------------------------------------------
1 |
34 |
--------------------------------------------------------------------------------
/assets/svg/32/light/crosshair.svg:
--------------------------------------------------------------------------------
1 |
34 |
--------------------------------------------------------------------------------
/assets/svg/32/light/no-drop.svg:
--------------------------------------------------------------------------------
1 |
27 |
--------------------------------------------------------------------------------
/assets/svg/32/default/no-drop.svg:
--------------------------------------------------------------------------------
1 |
27 |
--------------------------------------------------------------------------------
/assets/svg/32/default/vertical-text.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/32/light/vertical-text.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/24/default/vertical-text.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/24/light/vertical-text.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/24/default/text.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/24/light/text.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/32/default/text.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/32/light/text.svg:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/assets/svg/32/default/wayland.svg:
--------------------------------------------------------------------------------
1 |
27 |
--------------------------------------------------------------------------------
/assets/svg/24/default/help.svg:
--------------------------------------------------------------------------------
1 |
27 |
--------------------------------------------------------------------------------
/assets/svg/24/light/help.svg:
--------------------------------------------------------------------------------
1 |
27 |
--------------------------------------------------------------------------------
/assets/svg/32/default/help.svg:
--------------------------------------------------------------------------------
1 |
27 |
--------------------------------------------------------------------------------
/assets/svg/32/light/help.svg:
--------------------------------------------------------------------------------
1 |
27 |
--------------------------------------------------------------------------------
/assets/svg/32/light/wayland.svg:
--------------------------------------------------------------------------------
1 |
27 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Everforest cursors
2 |
3 | Everforest Medium Dark cursor theme, based on [phinger-cursors](https://github.com/phisch/phinger-cursors).
4 |
5 | 
6 |
7 | ### Manually
8 |
9 | For a manual installation, download and extract the [latest release](https://github.com/talwat/everforest-cursors/releases/latest/download/everforest-cursors-variants.tar.bz2) into the `~/.icons` directory.
10 |
11 | ```sh
12 | wget -cO- https://github.com/talwat/everforest-cursors/releases/latest/download/everforest-cursors-variants.tar.bz2 | tar xfj - -C ~/.icons
13 | ```
14 |
15 | This installs the cursor theme for your current user. To install for all users, extract into `/usr/share/icons` instead.
16 |
17 | ## How to enable
18 |
19 | You might have a settings application installed that can do this for you like [Gnome Tweaks](https://gitlab.gnome.org/GNOME/gnome-tweaks) or [lxappearance](https://wiki.lxde.org/en/LXAppearance). If you don't, enable the cursor theme as described below.
20 |
21 | ### Manually
22 |
23 | Enable it in `~/.icons/default/index.theme`:
24 |
25 | ```ini
26 | [Icon Theme]
27 | Name=Default
28 | Comment=Default Cursor Theme
29 | Inherits=everforest-cursors
30 | ```
31 |
32 | And finally, enable it for GTK applications in your `~/.config/gtk-3.0/settings.ini`:
33 |
34 | ```ini
35 | [Settings]
36 | gtk-cursor-theme-name=everforest-cursors
37 | ```
38 |
39 | ## How to change cursor size
40 |
41 | The available cursor sizes are `24`, `32`, `48`, `64`, `96` and `128`. How to change it depends on your current environment.
42 |
43 | ### GNOME, MATE, XFCE
44 |
45 | Run the following command and replace `CURSOR_SIZE` with your prefered one:
46 |
47 | - on GNOME: `gsettings set org.gnome.desktop.interface cursor-size CURSOR_SIZE`
48 | - on MATE: `gsettings set org.mate.peripherals-mouse CURSOR_SIZE`
49 | - on XFCE: `xfconf-query --channel xsettings --property /Gtk/CursorThemeSize --set CURSOR_SIZE`
50 |
51 | ### Xresources
52 |
53 | Add this line to your `~/.Xresources` and replace `CURSOR_SIZE` with your prefered one:
54 |
55 | ```sh
56 | Xcursor.size: CURSOR_SIZE
57 | ```
58 |
59 | ## License & Credits
60 |
61 | This is a recoloring of [phinger-cursors](https://github.com/phisch/phinger-cursors), so huge props to them.
62 |
63 | All assets, including the Figma document are licensed under the [CC-BY-SA-4.0 License](LICENSE).
64 |
65 | The X11 and Wayland cursors are designed from scratch, and not copied. The original logos belong to X11 and Wayland respectively though.
66 |
67 | Although designed from scratch, phinger cursors drew inspiration from [capitaine-cursors](https://github.com/keeferrourke/capitaine-cursors), which is based on the KDE Breeze cursors. So this is a special thanks to them, and all other amazing cursor themes out there!
68 |
--------------------------------------------------------------------------------
/assets/svg/32/default/left_side.svg:
--------------------------------------------------------------------------------
1 |
22 |
--------------------------------------------------------------------------------
/assets/svg/32/light/left_side.svg:
--------------------------------------------------------------------------------
1 |
22 |
--------------------------------------------------------------------------------
/assets/svg/32/light/right_side.svg:
--------------------------------------------------------------------------------
1 |
22 |
--------------------------------------------------------------------------------
/assets/svg/32/default/right_side.svg:
--------------------------------------------------------------------------------
1 |
22 |
--------------------------------------------------------------------------------
/assets/svg/24/default/top_side.svg:
--------------------------------------------------------------------------------
1 |
22 |
--------------------------------------------------------------------------------
/assets/svg/24/default/top_left_corner.svg:
--------------------------------------------------------------------------------
1 |
22 |
--------------------------------------------------------------------------------
/assets/svg/24/light/top_left_corner.svg:
--------------------------------------------------------------------------------
1 |
22 |
--------------------------------------------------------------------------------
/assets/svg/24/light/right_side.svg:
--------------------------------------------------------------------------------
1 |
22 |
--------------------------------------------------------------------------------
/assets/svg/32/light/bottom_side.svg:
--------------------------------------------------------------------------------
1 |
22 |
--------------------------------------------------------------------------------
/assets/svg/24/light/top_right_corner.svg:
--------------------------------------------------------------------------------
1 |
22 |
--------------------------------------------------------------------------------
/assets/svg/32/default/bottom_side.svg:
--------------------------------------------------------------------------------
1 |
22 |
--------------------------------------------------------------------------------
/assets/svg/24/default/top_right_corner.svg:
--------------------------------------------------------------------------------
1 |
22 |
--------------------------------------------------------------------------------
/assets/svg/24/light/top_side.svg:
--------------------------------------------------------------------------------
1 |
22 |
--------------------------------------------------------------------------------