Hyprland utilities library used across the ecosystem
  • C++ 98.4%
  • CMake 0.9%
  • Nix 0.7%
Find a file
2026-09-05 16:51:23 +02:00
.github ci: init vouch 2026-08-01 12:26:49 +02:00
include/hyprutils eventLoop: init event loop (#124) 2026-08-16 20:00:07 +02:00
nix nix: gcc 15 -> 16 2026-08-11 19:01:20 +03:00
src eventLoop: init event loop (#124) 2026-08-16 20:00:07 +02:00
tests eventLoop: init event loop (#124) 2026-08-16 20:00:07 +02:00
.clang-format utils: Initial Commit 2024-06-08 19:37:15 +02:00
.clang-tidy clang-tidy: remove namespace rule 2026-08-13 17:44:33 +02: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 eventLoop: init event loop (#124) 2026-08-16 20:00:07 +02:00
flake.lock nix: gcc 15 -> 16 2026-08-11 19:01:20 +03:00
flake.nix treewide: alejandra -> nixfmt 2026-03-02 15:57:50 +02: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.14.2 2026-09-05 16:51:23 +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