mirror of https://github.com/polybar/polybar.git
21 lines
385 B
C++
21 lines
385 B
C++
#pragma once
|
|
|
|
#include "modules/meta/static_module.hpp"
|
|
|
|
POLYBAR_NS
|
|
|
|
namespace modules {
|
|
class text_module : public static_module<text_module> {
|
|
public:
|
|
explicit text_module(const bar_settings&, string);
|
|
|
|
void update() {}
|
|
string get_format() const;
|
|
string get_output();
|
|
|
|
static constexpr auto TYPE = "custom/text";
|
|
};
|
|
} // namespace modules
|
|
|
|
POLYBAR_NS_END
|