Proper formatting
parent
14f626d422
commit
e8278431d2
|
@ -241,9 +241,9 @@ auto waybar::Client::setupConfig(const std::string &config_file) -> void {
|
||||||
}
|
}
|
||||||
std::string str((std::istreambuf_iterator<char>(file)), std::istreambuf_iterator<char>());
|
std::string str((std::istreambuf_iterator<char>(file)), std::istreambuf_iterator<char>());
|
||||||
util::JsonParser parser;
|
util::JsonParser parser;
|
||||||
Json::Value tmp_config_ = parser.parse(str);
|
Json::Value tmp_config_ = parser.parse(str);
|
||||||
if (tmp_config_["include"].isArray()) {
|
if (tmp_config_["include"].isArray()) {
|
||||||
for (const auto& include : tmp_config_["include"]) {
|
for (const auto &include : tmp_config_["include"]) {
|
||||||
spdlog::info("Including resource file: {}", include.asString());
|
spdlog::info("Including resource file: {}", include.asString());
|
||||||
setupConfig(getValidPath({include.asString()}));
|
setupConfig(getValidPath({include.asString()}));
|
||||||
}
|
}
|
||||||
|
@ -252,7 +252,7 @@ auto waybar::Client::setupConfig(const std::string &config_file) -> void {
|
||||||
}
|
}
|
||||||
|
|
||||||
auto waybar::Client::mergeConfig(Json::Value &a_config_, Json::Value &b_config_) -> void {
|
auto waybar::Client::mergeConfig(Json::Value &a_config_, Json::Value &b_config_) -> void {
|
||||||
for (const auto& key : b_config_.getMemberNames()) {
|
for (const auto &key : b_config_.getMemberNames()) {
|
||||||
if (a_config_[key].type() == Json::objectValue && b_config_[key].type() == Json::objectValue) {
|
if (a_config_[key].type() == Json::objectValue && b_config_[key].type() == Json::objectValue) {
|
||||||
mergeConfig(a_config_[key], b_config_[key]);
|
mergeConfig(a_config_[key], b_config_[key]);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue