Find a file
2025-06-26 19:49:52 +02:00
.github/workflows CI/Nix: add cache-nix-action 2025-06-20 01:11:36 +03:00
include/hyprutils signal: don't mark signal as C++ deprecated 2025-06-26 19:49:52 +02:00
nix Nix: move overlays to nix/ and add debug package 2025-06-20 01:11:34 +03:00
src signal: Typed signals (part 2) (#60) 2025-06-26 12:27:31 +02:00
tests signal: Typed signals (part 2) (#60) 2025-06-26 12:27:31 +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.0 2025-06-26 18:23:47 +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