1
0
Fork 0
mirror of https://github.com/hyprwm/hyprlang.git synced 2025-04-11 13:12:04 +02:00
A read-only mirror of https://github.com/hyprwm/hyprlang
Find a file
2025-03-05 18:18:47 +02:00
.github/workflows CI: remove deprecated magic-nix-cache-action 2025-02-08 23:08:34 +02:00
include docs: fix incorrect doc about getValue type 2025-02-25 17:18:11 +00:00
nix core: Move to hyprutils for util functions () 2024-06-08 23:24:12 +02:00
src core: clang-tidy and comp fixes () 2025-02-08 01:44:54 +01:00
tests core: clang-tidy and comp fixes () 2025-02-08 01:44:54 +01:00
.clang-format
.clang-tidy core: clang-tidy and comp fixes () 2025-02-08 01:44:54 +01:00
.gitignore API: add a templated config value wrapper 2024-12-13 20:48:06 +00:00
CMakeLists.txt core: clang-tidy and comp fixes () 2025-02-08 01:44:54 +01:00
COPYRIGHT repo: add COPYRIGHT file 2024-03-04 22:28:50 +00:00
flake.lock flake.lock: update 2025-01-23 14:16:46 +02:00
flake.nix flake.nix: use gcc14Stdenv, update 2024-12-14 13:01:16 +02:00
hyprlang-docs CI: deploy docs () 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 () 2024-03-03 00:10:20 +00:00
README.md README: fix typo () 2025-03-05 18:18:47 +02:00
VERSION version: bump to 0.6.0 2024-12-13 20:48:31 +00: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 hyprland.org/hyprlang to see the documentation.

Example implementation

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