polybar/include/modules/date.hpp

35 lines
671 B
C++
Raw Normal View History

#pragma once
2016-05-19 14:41:06 +00:00
#include "modules/base.hpp"
namespace modules
{
DefineModule(DateModule, TimerModule)
{
static constexpr auto TAG_DATE = "<date>";
2016-05-19 14:41:06 +00:00
static constexpr auto EVENT_TOGGLE = "datetoggle";
2016-05-19 14:41:06 +00:00
std::unique_ptr<Builder> builder;
std::string date;
std::string date_detailed;
char date_str[256] = {};
concurrency::Atomic<bool> detailed { false };
2016-05-19 14:41:06 +00:00
public:
2016-06-21 01:59:43 +00:00
explicit DateModule(std::string name);
2016-05-19 14:41:06 +00:00
bool update();
2016-06-21 01:59:43 +00:00
bool build(Builder *builder, std::string tag);
2016-05-19 14:41:06 +00:00
std::string get_output();
2016-06-21 01:59:43 +00:00
bool handle_command(std::string cmd);
2016-06-29 09:06:33 +00:00
bool register_for_events() const {
return true;
}
2016-05-19 14:41:06 +00:00
};
}