1
0
Fork 0
mirror of https://github.com/polybar/polybar.git synced 2025-02-17 15:55:20 -05:00
polybar/include/modules/text.hpp

18 lines
284 B
C++
Raw Normal View History

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