diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-03-31 22:04:45 +1100 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-03-31 22:04:45 +1100 |
| commit | 31fef678157016a621ba3d36f7373f5b1bbd8525 (patch) | |
| tree | 00f707a62cc097c417f22aa85db793f839ed0d7b /src/config | |
| parent | startup: wait for config to init (diff) | |
| parent | bar: add panel style (diff) | |
| download | caelestia-shell-31fef678157016a621ba3d36f7373f5b1bbd8525.tar.gz caelestia-shell-31fef678157016a621ba3d36f7373f5b1bbd8525.tar.bz2 caelestia-shell-31fef678157016a621ba3d36f7373f5b1bbd8525.zip | |
Merge branch 'round-gaps' into sidebar
Diffstat (limited to 'src/config')
| -rw-r--r-- | src/config/defaults.ts | 1 | ||||
| -rw-r--r-- | src/config/types.ts | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/config/defaults.ts b/src/config/defaults.ts index e950291..5365d86 100644 --- a/src/config/defaults.ts +++ b/src/config/defaults.ts @@ -8,6 +8,7 @@ export default { // Modules bar: { vertical: true, + style: "gaps", modules: { osIcon: { enabled: true, diff --git a/src/config/types.ts b/src/config/types.ts index 150d6bd..d3215c8 100644 --- a/src/config/types.ts +++ b/src/config/types.ts @@ -9,6 +9,7 @@ export default { "style.vibrant": BOOL, // Bar "bar.vertical": BOOL, + "bar.style": ["gaps", "panel", "embedded"], "bar.modules.osIcon.enabled": BOOL, "bar.modules.activeWindow.enabled": BOOL, "bar.modules.mediaPlaying.enabled": BOOL, |