A read-only mirror of https://github.com/hyprwm/hyprlang
Go to file
Petr Kobalicek dfeb5811dd
CMake: Use library aliases instead of library names (#55)
This changeset makes it possible to compile hyprlang with a custom
install prefix, which was not honored because of using "hyprutils" as
a raw dependency, which means that CMake was adding "-lhyprutils" flag
to the linker, but the linker didn't know the path in case a custom
install prefix was used to compile hyprutils.
2024-09-10 20:51:00 +01:00
.github/workflows CI: fix arch 2024-07-06 12:17:06 +02:00
include header: undef internal symbols if not internal 2024-03-08 16:15:01 +00:00
nix core: Move to hyprutils for util functions (#48) 2024-06-08 23:24:12 +02:00
src config: Return an error on invalid hex values. (#54) 2024-09-02 00:45:17 +02:00
tests config: Return an error on invalid hex values. (#54) 2024-09-02 00:45:17 +02:00
.clang-format initial commit 2023-12-28 20:38:01 +01:00
.gitignore doxygen: init 2023-12-30 14:31:48 +01:00
CMakeLists.txt CMake: Use library aliases instead of library names (#55) 2024-09-10 20:51:00 +01:00
COPYRIGHT repo: add COPYRIGHT file 2024-03-04 22:28:50 +00:00
LICENSE Relicense hyprlang to lgpl 3 (#27) 2024-03-03 00:10:20 +00:00
README.md README: Fixed getconf command in build instructions (#44) 2024-05-14 16:13:58 +01:00
VERSION CMake, Nix: add VERSION file 2024-07-18 20:37:19 +03:00
flake.lock flake.lock: update 2024-07-18 20:39:21 +03:00
flake.nix CMake, Nix: add VERSION file 2024-07-18 20:37:19 +03: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

README.md

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 implmentation, take a look at the tests/ directory.