polybar/include/modules/date.hpp

31 lines
609 B
C++

#pragma once
#include "modules/meta/timer_module.hpp"
POLYBAR_NS
namespace modules {
class date_module : public timer_module<date_module> {
public:
using timer_module::timer_module;
void setup();
bool update();
bool build(builder* builder, const string& tag) const;
bool handle_event(string cmd);
bool receive_events() const;
private:
static constexpr auto TAG_DATE = "<date>";
static constexpr auto EVENT_TOGGLE = "datetoggle";
string m_format;
string m_formatalt;
char m_buffer[256] = {'\0'};
stateflag m_toggled{false};
};
}
POLYBAR_NS_END