2019-09-23 20:25:54 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <fmt/format.h>
|
|
|
|
#include <sys/statvfs.h>
|
2022-04-06 06:37:19 +00:00
|
|
|
|
|
|
|
#include <fstream>
|
|
|
|
|
2019-09-23 20:25:54 +00:00
|
|
|
#include "ALabel.hpp"
|
|
|
|
#include "util/format.hpp"
|
2022-04-06 06:37:19 +00:00
|
|
|
#include "util/sleeper_thread.hpp"
|
2019-09-23 20:25:54 +00:00
|
|
|
|
|
|
|
namespace waybar::modules {
|
|
|
|
|
|
|
|
class Disk : public ALabel {
|
|
|
|
public:
|
|
|
|
Disk(const std::string&, const Json::Value&);
|
|
|
|
~Disk() = default;
|
|
|
|
auto update() -> void;
|
|
|
|
|
|
|
|
private:
|
|
|
|
util::SleeperThread thread_;
|
|
|
|
std::string path_;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace waybar::modules
|