mirror of
https://github.com/hyprwm/hyprlang.git
synced 2024-11-17 02:25:59 +01:00
update readme
This commit is contained in:
parent
e15526ee91
commit
2fb2ab9b46
1 changed files with 36 additions and 1 deletions
37
README.md
37
README.md
|
@ -1,2 +1,37 @@
|
||||||
# hyprlang
|
# hyprlang
|
||||||
The official implementation library for the hypr config language.
|
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.
|
||||||
|
|
||||||
|
## Example config
|
||||||
|
|
||||||
|
```ini
|
||||||
|
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
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
cakes {
|
||||||
|
number = 3 # int
|
||||||
|
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
|
||||||
|
|
||||||
|
Soon:tm:
|
||||||
|
|
Loading…
Reference in a new issue