A read-only mirror of https://github.com/hyprwm/hyprcursor
Go to file
Vaxry dd3a853c82 README: add toml++ to dep list 2024-06-14 14:32:02 +02:00
.github/workflows ci: fix missing dep 2024-06-14 14:31:45 +02:00
docs docs: mention timeouts to be > 0 2024-06-13 12:11:39 +02:00
hyprcursor-util zip: fix build for some distros (#37) (#38) 2024-04-20 12:23:33 +01:00
include/hyprcursor core/API: add option to not use default fallbacks (env and first available) (#43) 2024-05-21 23:45:11 +02:00
libhyprcursor core/API: add option to not use default fallbacks (env and first available) (#43) 2024-05-21 23:45:11 +02:00
nix Nix: add tomlplusplus dep 2024-04-04 20:01:46 +03:00
tests lib: Added a raw data API (#23) 2024-04-06 21:16:55 +01:00
.clang-format Initial commit: very basics 2024-03-07 03:19:38 +00:00
.gitignore Initial commit: very basics 2024-03-07 03:19:38 +00:00
CMakeLists.txt cmake: bump ver to 0.1.9 2024-05-24 20:46:51 +02:00
LICENSE Initial commit 2024-03-06 18:57:56 +00:00
README.md README: add toml++ to dep list 2024-06-14 14:32:02 +02:00
flake.lock flake.lock: update 2024-04-15 23:54:23 +03:00
flake.nix fix missing follow in flake.nix 2024-04-05 11:00:30 +13:00
hyprcursor.pc.in Initial commit: very basics 2024-03-07 03:19:38 +00:00

README.md

hyprcursor

The hyprland cursor format, library and utilities.

Why?

XCursor sucks, and we still use it today.

  • Scaling of XCursors is horrible
  • XCursor does not support vector cursors
  • XCursor is ridiculously space-inefficient

Hyprcursor fixes all three. It's an efficient cursor theme format that doesn't suck as much.

Notable advantages over XCursor

  • Automatic scaling according to a configurable, per-cursor method.
  • Support for SVG cursors
  • Way more space-efficient. As an example, Bibata-XCursor is 44.1MB, while it's 6.6MB in hyprcursor.

Documentation

See the wiki here and check out docs/.

Tools

hyprcursor-util

Utility for creating hyprcursor themes. See its readme in hyprcursor-util/

libhyprcursor

The library to use for implementing hyprcursors in your compositor or app.

It provides C and C++ bindings.

Examples

For both C and C++, see tests/.

TODO

Library:

  • Support animated cursors
  • Support SVG cursors

Util:

  • Support compiling a theme with X
  • Support decompiling animated cursors

Building

Deps:

  • hyprlang >= 0.4.2
  • cairo
  • libzip
  • librsvg
  • tomlplusplus

Build

cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_INSTALL_PREFIX:PATH=/usr -S . -B ./build
cmake --build ./build --config Release --target all -j`nproc 2>/dev/null || getconf _NPROCESSORS_CONF`

Install with:

sudo cmake --install build