make bar (more likely to work with) multimonitor (#162)

This commit is contained in:
end-4
2024-01-24 23:20:53 +07:00
parent 1cb1b94ad2
commit 830f6a780d
5 changed files with 39 additions and 61 deletions
+8 -3
View File
@@ -43,9 +43,9 @@ const Windows = () => [
SideRight(),
Osk(),
Session(),
Bar(),
BarCornerTopleft(),
BarCornerTopright(),
// forMonitors(Bar),
// forMonitors(BarCornerTopleft),
// forMonitors(BarCornerTopright),
forMonitors((id) => Corner(id, 'top left')),
forMonitors((id) => Corner(id, 'top right')),
forMonitors((id) => Corner(id, 'bottom left')),
@@ -62,3 +62,8 @@ export default {
},
windows: Windows().flat(1),
};
// Stuff that don't need to be toggled. And they're async so ugh...
forMonitors(Bar);
forMonitors(BarCornerTopleft);
forMonitors(BarCornerTopright);