A read-only mirror of https://github.com/hyprwm/hyprlang
Find a file
2026-04-27 21:02:07 +01:00
.github/workflows CI: use org-wide actions 2026-04-17 14:52:16 +03:00
include configvalue: add an extended config value getter (#93) 2026-04-27 21:02:07 +01:00
nix treewide: alejandra -> nixfmt 2026-03-02 15:53:49 +02:00
src configvalue: add an extended config value getter (#93) 2026-04-27 21:02:07 +01:00
tests configvalue: add an extended config value getter (#93) 2026-04-27 21:02:07 +01:00
.clang-format initial commit 2023-12-28 20:38:01 +01:00
.clang-tidy clang-tidy: fix some errors (#70) 2025-04-22 23:23:39 +02:00
.gitignore API: add a templated config value wrapper 2024-12-13 20:48:06 +00:00
CMakeLists.txt parser: add support for basic arithmetic 2025-05-07 17:50:22 +01:00
COPYRIGHT repo: add COPYRIGHT file 2024-03-04 22:28:50 +00:00
flake.lock flake.lock: update 2026-03-02 15:52:34 +02:00
flake.nix treewide: alejandra -> nixfmt 2026-03-02 15:53:49 +02:00
hyprlang-docs CI: deploy docs (#2) 2023-12-30 15:15:36 +01:00
hyprlang.pc.in use CMAKE_INSTALL_FULL_LIBDIR in pkgconfig instead of hardcoded lib 2024-01-09 17:20:04 +02:00
LICENSE Relicense hyprlang to lgpl 3 (#27) 2024-03-03 00:10:20 +00:00
README.md README: update docs link (#81) 2025-07-27 16:28:12 +03:00
VERSION version: bump to 0.6.8 2026-01-05 16:56:10 +01:00

hyprlang

The hypr configuration language is an extremely efficient, yet easy to work with, configuration language for linux applications.

It's user-friendly, easy to grasp, and easy to implement.

Building and installation

Building is done via CMake:

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

Install with:

sudo cmake --install ./build

Example config

bakery {
    counter_color = rgba(ee22eeff)          # color by rgba()
    door_color = rgba(122, 176, 91, 0.1)    # color by rgba()
    dimensions = 10 20                      # vec2
    employees = 3                           # int
    average_time_spent = 8.13               # float
    hackers_password = 0xDEADBEEF           # int, as hex

    # nested categories
    secrets {
        password = hyprland                 # string
    }
}

# variable
$NUM_ORDERS = 3

cakes {
    number = $NUM_ORDERS                    # use a variable
    colors = red, green, blue               # string
}

# keywords, invoke your own handler with the parameters
add_baker = Jeremy, 26, Warsaw
add_baker = Andrew, 21, Berlin
add_baker = Koichi, 18, Morioh

Docs

Visit wiki.hypr.land/Hypr-Ecosystem/hyprlang/ to see the documentation.

Example implementation

For an example implementation, take a look at the tests/ directory.