mirror of
https://github.com/polybar/polybar.git
synced 2024-10-27 05:23:39 -04:00
30 lines
638 B
C++
30 lines
638 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);
|
|
|
|
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{};
|
|
bool m_empty_notifications{false};
|
|
};
|
|
}
|
|
|
|
POLYBAR_NS_END
|