Candyrice/eww/yuck/README.md

17 lines
492 B
Markdown
Raw Permalink Normal View History

2024-07-29 18:18:42 +00:00
# Yuck files
2024-07-29 18:24:57 +00:00
Yuck is the custom language to config EWW. Refer the [official docs](https://elkowar.github.io/eww/configuration.html) for basic config instructions and syntax.
2024-07-29 18:18:42 +00:00
## Note: Splitting Eww Config
2024-07-29 18:18:42 +00:00
There are 2 ways to specify path while including other `.yuck` files:
2024-07-29 18:24:57 +00:00
### Absolute path:
From `/`
2024-08-07 05:24:49 +00:00
```yuck
(include "/absolute/path/from/root/to/file.yuck")
```
2024-07-29 18:18:42 +00:00
2024-07-29 18:24:57 +00:00
### Relative path:
Relative to `eww` config dir
2024-08-07 05:24:49 +00:00
```yuck
(include "path/relative_to/eww_config_dir/file.yuck")
```