31 lines
617 B
C++
31 lines
617 B
C++
|
#pragma once
|
||
|
|
||
|
#include "config.hpp"
|
||
|
#include "modules/meta/timer_module.hpp"
|
||
|
#include "utils/http.hpp"
|
||
|
|
||
|
POLYBAR_NS
|
||
|
|
||
|
namespace modules {
|
||
|
/**
|
||
|
* Module used to query the GitHub API for notification count
|
||
|
*/
|
||
|
class github_module : public timer_module<github_module> {
|
||
|
public:
|
||
|
explicit github_module(const bar_settings&, string);
|
||
|
|
||
|
void setup();
|
||
|
bool update();
|
||
|
bool build(builder* builder, const string& tag) const;
|
||
|
|
||
|
private:
|
||
|
static constexpr auto TAG_LABEL = "<label>";
|
||
|
|
||
|
label_t m_label{};
|
||
|
string m_accesstoken{};
|
||
|
unique_ptr<http_downloader> m_http{};
|
||
|
};
|
||
|
}
|
||
|
|
||
|
POLYBAR_NS_END
|