Find a file
2025-07-29 16:49:27 +02:00
.github/workflows CI/Nix: add cache-nix-action 2025-06-20 01:11:36 +03:00
include/hyprutils memory: add missing lock (#69) 2025-07-22 16:58:12 +02:00
nix Nix: move overlays to nix/ and add debug package 2025-06-20 01:11:34 +03:00
src mat3x3: check for finite in toString (#70) 2025-07-23 12:14:37 +02:00
tests math/vector: Added transform method to Vector2D class (#64) 2025-07-05 23:18:58 +02:00
.clang-format utils: Initial Commit 2024-06-08 19:37:15 +02:00
.clang-tidy core: clang, clang-tidy fixes and comp options (#45) 2025-02-02 20:36:28 +01:00
.editorconfig core: add editorconfig (#61) 2025-06-26 11:44:09 +02:00
.gitignore memory: add CAtomicSharedPointer and CAtomicWeakPointer (#57) 2025-06-25 19:41:24 +02:00
CMakeLists.txt version: bump to 0.8.0 2025-06-26 18:23:47 +02:00
flake.lock nix: use gcc15 (#54) 2025-06-05 15:55:56 +01:00
flake.nix Nix: move overlays to nix/ and add debug package 2025-06-20 01:11:34 +03:00
hyprutils.pc.in utils: Initial Commit 2024-06-08 19:37:15 +02:00
LICENSE Initial commit 2024-06-08 18:51:36 +02:00
README.md README: fix invalid getconf value 2024-11-22 15:11:21 +00:00
VERSION version: bump to 0.8.2 2025-07-29 16:49:27 +02:00

hyprutils

Hyprutils is a small C++ library for utilities used across the Hypr* ecosystem.

Stability

Hyprutils depends on the ABI stability of the stdlib implementation of your compiler. Sover bumps will be done only for hyprutils ABI breaks, not stdlib.

Building

git clone https://github.com/hyprwm/hyprutils.git
cd hyprutils/
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`
sudo cmake --install build