Revert readme

This commit is contained in:
Jas Singh
2024-07-15 20:44:00 -07:00
parent 11785d1a5d
commit 3ff7b1fd9b
2 changed files with 22 additions and 15 deletions

View File

@@ -31,7 +31,6 @@ const widget = {
bluetooth: () => WidgetContainer(Bluetooth()),
clock: () => WidgetContainer(Clock()),
systray: () => WidgetContainer(SysTray()),
// expander: () => Widget.Box({ expand: true }),
};
export const Bar = (monitor: number) => {
@@ -51,7 +50,7 @@ export const Bar = (monitor: number) => {
setup: self => {
self.children = start.value.map(w => widget[w](monitor));
self.hook(start, (self) => {
self.children = start.value.map(w => widget[w](monitor));
self.children = start.value.map(w => widget[w](monitor));
})
},
}),