From 45f97d8f94f67657421316f082ac1d4222012691 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Tue, 15 Apr 2025 15:22:31 +1000 Subject: feat: add low transparency mode --- src/config/defaults.ts | 2 +- src/config/types.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/config') diff --git a/src/config/defaults.ts b/src/config/defaults.ts index 21ba436..a5ebbbc 100644 --- a/src/config/defaults.ts +++ b/src/config/defaults.ts @@ -2,7 +2,7 @@ import { Astal } from "astal/gtk3"; export default { style: { - transparency: "normal", // One of "off", "normal", "high" + transparency: "normal", // One of "off", "low", "normal", "high" borders: true, vibrant: false, // Extra saturation }, diff --git a/src/config/types.ts b/src/config/types.ts index 5e7415a..c8fb9b4 100644 --- a/src/config/types.ts +++ b/src/config/types.ts @@ -7,7 +7,7 @@ const ARR = (type: string | string[]) => `array of ${typeof type === "string" ? const OBJ_ARR = (shape: object) => ARR(JSON.stringify(shape)); export default { - "style.transparency": ["off", "normal", "high"], + "style.transparency": ["off", "low", "normal", "high"], "style.borders": BOOL, "style.vibrant": BOOL, "config.notifyOnError": BOOL, -- cgit v1.2.3-freya