From 27b12681f61188d458560480e74d377c141fff52 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Tue, 1 Apr 2025 19:53:28 +1100 Subject: feat: toggle borders option --- src/config/defaults.ts | 1 + src/config/types.ts | 1 + 2 files changed, 2 insertions(+) (limited to 'src') diff --git a/src/config/defaults.ts b/src/config/defaults.ts index e933050..e8e67ac 100644 --- a/src/config/defaults.ts +++ b/src/config/defaults.ts @@ -3,6 +3,7 @@ import { Astal } from "astal/gtk3"; export default { style: { transparency: "normal", // One of "off", "normal", "high" + borders: true, vibrant: false, // Extra saturation }, // Modules diff --git a/src/config/types.ts b/src/config/types.ts index 7bea7bf..dd92040 100644 --- a/src/config/types.ts +++ b/src/config/types.ts @@ -6,6 +6,7 @@ const OBJ_ARR = (shape: object) => ARR(JSON.stringify(shape)); export default { "style.transparency": ["off", "normal", "high"], + "style.borders": BOOL, "style.vibrant": BOOL, // Bar "bar.vertical": BOOL, -- cgit v1.2.3-freya