mirror of
https://github.com/rad4day/Waybar.git
synced 2023-12-21 10:22:59 +01:00
feat(Bar): handle widget size changes
This commit is contained in:
@ -28,19 +28,19 @@ auto waybar::modules::Memory::update() -> void {
|
||||
}
|
||||
|
||||
void waybar::modules::Memory::parseMeminfo() {
|
||||
long memfree = -1, membuffer = -1, memcache = -1, memavail = -1;
|
||||
int64_t memfree = -1, membuffer = -1, memcache = -1, memavail = -1;
|
||||
std::ifstream info(data_dir_);
|
||||
if (!info.is_open()) {
|
||||
throw std::runtime_error("Can't open " + data_dir_);
|
||||
}
|
||||
std::string line;
|
||||
while (getline(info, line)) {
|
||||
auto posDelim = line.find(":");
|
||||
auto posDelim = line.find(':');
|
||||
if (posDelim == std::string::npos) {
|
||||
continue;
|
||||
}
|
||||
std::string name = line.substr(0, posDelim);
|
||||
long value = std::stol(line.substr(posDelim + 1));
|
||||
int64_t value = std::stol(line.substr(posDelim + 1));
|
||||
|
||||
if (name.compare("MemTotal") == 0) {
|
||||
memtotal_ = value;
|
||||
|
Reference in New Issue
Block a user