Waybar/include/modules/sway/mode.hpp

27 lines
533 B
C++
Raw Normal View History

2018-10-30 12:39:30 +00:00
#pragma once
#include <fmt/format.h>
#include "bar.hpp"
#include "client.hpp"
#include "util/chrono.hpp"
#include "util/json.hpp"
#include "ALabel.hpp"
#include "modules/sway/ipc/client.hpp"
namespace waybar::modules::sway {
class Mode : public ALabel {
public:
2018-12-18 16:30:54 +00:00
Mode(const std::string&, const waybar::Bar&, const Json::Value&);
2018-10-30 12:39:30 +00:00
auto update() -> void;
private:
void worker();
2018-11-30 23:10:41 +00:00
const Bar& bar_;
2018-10-30 12:39:30 +00:00
waybar::util::SleeperThread thread_;
util::JsonParser parser_;
Ipc ipc_;
std::string mode_;
};
}