#pragma once #include "modules/meta/timer_module.hpp" POLYBAR_NS namespace modules { class counter_module : public timer_module { public: using timer_module::timer_module; void setup(); bool update(); bool build(builder* builder, const string& tag) const; private: static constexpr auto TAG_COUNTER = ""; int m_counter{0}; }; } POLYBAR_NS_END