feat(client): status bar (experimental)

This commit is contained in:
syuilo 2022-07-03 14:40:02 +09:00
parent f8f3ecbf02
commit 44c85aff86
12 changed files with 658 additions and 51 deletions

View file

@ -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<string, any>;
}[],
},
statusbarSize: {
where: 'deviceAccount',
default: 'medium',
},
widgets: {
where: 'deviceAccount',
default: [] as {