add rudimentary bluetooth module functionality

This commit is contained in:
Marc
2020-01-21 17:04:54 +01:00
parent 2c4369a653
commit 626af1ddc1
3 changed files with 102 additions and 0 deletions

View File

@ -0,0 +1,18 @@
#pragma once
#include <fmt/format.h>
#include "ALabel.hpp"
namespace waybar::modules {
class Bluetooth : public ALabel {
public:
Bluetooth(const std::string&, const Json::Value&);
~Bluetooth() = default;
auto update() -> void;
private:
;
};
} // namespace waybar::modules