1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-06-10 03:44:06 +02:00

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 {