bluetooth module working

This commit is contained in:
Marc
2020-01-22 11:37:47 +01:00
parent f0dbd8b78d
commit 89cb9673d4
5 changed files with 36 additions and 20 deletions

View File

@ -3,6 +3,9 @@
#include <fmt/format.h>
#include "ALabel.hpp"
#include <fmt/chrono.h>
#include "util/sleeper_thread.hpp"
namespace waybar::modules {
class Bluetooth : public ALabel {
@ -12,7 +15,8 @@ class Bluetooth : public ALabel {
auto update() -> void;
private:
;
std::string status_;
util::SleeperThread thread_;
};
} // namespace waybar::modules