2018-08-09 10:05:48 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <json/json.h>
|
|
|
|
#include "modules/clock.hpp"
|
2018-08-15 18:17:17 +00:00
|
|
|
#include "modules/sway/workspaces.hpp"
|
|
|
|
#include "modules/sway/window.hpp"
|
2018-08-09 10:05:48 +00:00
|
|
|
#include "modules/battery.hpp"
|
|
|
|
#include "modules/memory.hpp"
|
|
|
|
#include "modules/cpu.hpp"
|
2018-08-09 14:38:24 +00:00
|
|
|
#include "modules/network.hpp"
|
2018-08-09 21:55:38 +00:00
|
|
|
#include "modules/pulseaudio.hpp"
|
2018-08-10 14:26:46 +00:00
|
|
|
#include "modules/custom.hpp"
|
2018-08-09 10:05:48 +00:00
|
|
|
|
|
|
|
namespace waybar {
|
|
|
|
|
2018-08-16 12:29:41 +00:00
|
|
|
class Factory {
|
|
|
|
public:
|
|
|
|
Factory(Bar &bar, Json::Value config);
|
|
|
|
IModule *makeModule(const std::string &name);
|
|
|
|
private:
|
|
|
|
Bar &_bar;
|
|
|
|
Json::Value _config;
|
|
|
|
};
|
2018-08-09 10:05:48 +00:00
|
|
|
|
|
|
|
}
|