diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 36 |
1 files changed, 36 insertions, 0 deletions
@@ -147,10 +147,46 @@ git pull All configuration options are in `~/.config/caelestia/shell.json`. +> [!NOTE] +> The example configuration only includes recommended configuration options. For more advanced customisation +> such as modifying the size of individual items or changing constants in the code, there are some other +> options which can be found in the source files in the `config` directory. + <details><summary>Example configuration</summary> ```json { + "appearance": { + "anim": { + "durations": { + "scale": 1 + } + }, + "font": { + "family": { + "material": "Material Symbols Rounded", + "mono": "JetBrains Mono NF", + "sans": "IBM Plex Sans" + }, + "size": { + "scale": 1 + } + }, + "padding": { + "scale": 1 + }, + "rounding": { + "scale": 1 + }, + "spacing": { + "scale": 1 + }, + "transparency": { + "enabled": false, + "base": 0.85, + "layers": 0.4 + } + }, "general": { "apps": { "terminal": ["foot"], |