1
0
Fork 0
mirror of https://github.com/polybar/polybar.git synced 2024-11-25 13:55:47 -05:00
polybar/include/modules/text.hpp
2016-06-21 04:23:23 +02:00

17 lines
284 B
C++

#pragma once
#include "modules/base.hpp"
namespace modules
{
DefineModule(TextModule, StaticModule)
{
static constexpr auto FORMAT = "content";
public:
explicit TextModule(std::string name);
std::string get_format();
std::string get_output();
};
}