1
0
Fork 0
mirror of https://github.com/polybar/polybar.git synced 2024-10-27 05:23:39 -04:00
polybar/include/modules/tray.hpp

29 lines
618 B
C++
Raw Normal View History

#pragma once
#include "common.hpp"
#include "components/bar.hpp"
#include "modules/meta/static_module.hpp"
2022-08-28 09:15:48 -04:00
#include "x11/tray_manager.hpp"
POLYBAR_NS
namespace modules {
2022-10-31 18:21:00 -04:00
class tray_module : public static_module<tray_module> {
public:
explicit tray_module(const bar_settings& bar_settings, string name_);
string get_format() const;
2022-10-31 18:21:00 -04:00
void start() override;
2022-08-28 09:15:48 -04:00
2022-10-31 18:21:00 -04:00
bool build(builder* builder, const string& tag) const;
void update() {}
2022-10-31 18:21:00 -04:00
static constexpr auto TYPE = "internal/tray";
2022-10-31 18:21:00 -04:00
private:
static constexpr const char* TAG_TRAY{"<tray>"};
2022-10-31 18:21:00 -04:00
tray::manager m_tray;
};
2022-08-28 09:15:48 -04:00
} // namespace modules
POLYBAR_NS_END