1
0
Fork 0
mirror of https://github.com/polybar/polybar.git synced 2024-10-27 05:23:39 -04:00
polybar/include/modules/text.hpp

18 lines
291 B
C++
Raw Normal View History

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