mirror of
https://github.com/polybar/polybar.git
synced 2024-10-27 05:23:39 -04:00
18 lines
288 B
C++
18 lines
288 B
C++
#pragma once
|
|
|
|
#include "modules/meta.hpp"
|
|
|
|
LEMONBUDDY_NS
|
|
|
|
namespace modules {
|
|
class text_module : public static_module<text_module> {
|
|
public:
|
|
using static_module::static_module;
|
|
|
|
void setup();
|
|
string get_format() const;
|
|
string get_output();
|
|
};
|
|
}
|
|
|
|
LEMONBUDDY_NS_END
|