Base wlr impl (Manager, Group)

This commit is contained in:
dmitry
2020-08-05 02:17:38 +03:00
parent 0625bc7688
commit 2b11b7ef8c
7 changed files with 510 additions and 0 deletions

View File

@ -27,6 +27,9 @@ waybar::AModule* waybar::Factory::makeModule(const std::string& name) const {
if (ref == "wlr/taskbar") {
return new waybar::modules::wlr::Taskbar(id, bar_, config_[name]);
}
if (ref == "wlr/workspaces") {
return new waybar::modules::wlr::WorkspaceManager(id, bar_, config_[name]);
}
#endif
#ifdef HAVE_RIVER
if (ref == "river/tags") {