From 44c85aff86cfa97797880e9b246ea4c75dc82984 Mon Sep 17 00:00:00 2001 From: syuilo Date: Sun, 3 Jul 2022 14:40:02 +0900 Subject: feat(client): status bar (experimental) --- packages/client/src/store.ts | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'packages/client/src/store.ts') diff --git a/packages/client/src/store.ts b/packages/client/src/store.ts index 94d9d91385..cde907017d 100644 --- a/packages/client/src/store.ts +++ b/packages/client/src/store.ts @@ -88,6 +88,19 @@ export const defaultStore = markRaw(new Storage('base', { where: 'deviceAccount', default: false, }, + statusbars: { + where: 'deviceAccount', + default: [] as { + name: string; + id: string; + type: string; + props: Record; + }[], + }, + statusbarSize: { + where: 'deviceAccount', + default: 'medium', + }, widgets: { where: 'deviceAccount', default: [] as { -- cgit v1.2.3-freya