Skip to content

Commit

Permalink
feat(custom): escape option
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexays committed Mar 1, 2019
1 parent 2c411b9 commit 79b0367
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions src/modules/custom.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,11 @@ void waybar::modules::Custom::parseOutputRaw()
int i = 0;
while (getline(output, line)) {
if (i == 0) {
text_ = line;
if (config_["escape"].isBool() && config_["escape"].asBool()) {
text_ = Glib::Markup::escape_text(line);
} else {
text_ = line;
}
tooltip_ = line;
class_ = "";
} else if (i == 1) {
Expand All @@ -144,8 +148,16 @@ void waybar::modules::Custom::parseOutputJson()
std::string line;
while (getline(output, line)) {
auto parsed = parser_.parse(line);
text_ = parsed["text"].asString();
alt_ = parsed["alt"].asString();
if (config_["escape"].isBool() && config_["escape"].asBool()) {
text_ = Glib::Markup::escape_text(parsed["text"].asString());
} else {
text_ = parsed["text"].asString();
}
if (config_["escape"].isBool() && config_["escape"].asBool()) {
alt_ = Glib::Markup::escape_text(parsed["alt"].asString());
} else {
alt_ = parsed["alt"].asString();
}
tooltip_ = parsed["tooltip"].asString();
class_ = parsed["class"].asString();
if (!parsed["percentage"].asString().empty() && parsed["percentage"].isUInt()) {
Expand Down

0 comments on commit 79b0367

Please sign in to comment.