mirror of
https://github.com/rad4day/Waybar.git
synced 2023-12-21 10:22:59 +01:00
feat: basic config file
This commit is contained in:
20
src/factory.cpp
Normal file
20
src/factory.cpp
Normal file
@ -0,0 +1,20 @@
|
||||
#include "factory.hpp"
|
||||
|
||||
waybar::Factory::Factory(Bar &bar, Json::Value config)
|
||||
: _bar(bar), _config(config)
|
||||
{}
|
||||
|
||||
waybar::IModule &waybar::Factory::makeModule(std::string name)
|
||||
{
|
||||
if (name == "battery")
|
||||
return *new waybar::modules::Battery();
|
||||
if (name == "workspaces")
|
||||
return *new waybar::modules::Workspaces(_bar);
|
||||
if (name == "memory")
|
||||
return *new waybar::modules::Memory();
|
||||
if (name == "cpu")
|
||||
return *new waybar::modules::Cpu();
|
||||
if (name == "clock")
|
||||
return *new waybar::modules::Clock();
|
||||
throw std::runtime_error("Unknown module: " + name);
|
||||
}
|
Reference in New Issue
Block a user