From ebec661399f02c416915a58e4ffdb593be7155d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niklas=20Schr=C3=B6tler?= <niklas@allround.digital> Date: Sun, 26 Nov 2023 20:59:24 +0100 Subject: [PATCH] LayoutConfig: Added option to define screen-wide background --- src/types/LayoutConfig.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/types/LayoutConfig.ts b/src/types/LayoutConfig.ts index 3508cce..c381c91 100644 --- a/src/types/LayoutConfig.ts +++ b/src/types/LayoutConfig.ts @@ -2,6 +2,7 @@ import {PanelTypes} from "../panels/_Panels"; export type LayoutConfig = { id: string, + background?: string, schedule: LayoutSchedule, panels: PanelDefinition<any>[] } -- GitLab