polybar/include/modules/text.hpp

18 lines
284 B
C++
Raw Normal View History

#pragma once
2016-05-19 14:41:06 +00:00
#include "modules/base.hpp"
namespace modules
{
DefineModule(TextModule, StaticModule)
{
static constexpr auto FORMAT = "content";
2016-05-19 14:41:06 +00:00
public:
2016-06-21 01:59:43 +00:00
explicit TextModule(std::string name);
2016-05-19 14:41:06 +00:00
std::string get_format();
std::string get_output();
};
}