Use i3bar format for markup field.

In the i3bar protocol the value of the markup field is a string: "pango"
or "none" rather than a bool. This patch makes swaybar compatible with
that.

http://i3wm.org/docs/i3bar-protocol.html
This commit is contained in:
Mikkel Oscar Lyderik 2016-04-24 10:23:03 +02:00
parent d8482419fc
commit 11f0b4539d

View File

@ -141,7 +141,11 @@ static void parse_json(struct bar *bar, const char *text) {
}
if (markup) {
new->markup = json_object_get_boolean(markup);
new->markup = false;
const char *markup_str = json_object_get_string(markup);
if (strcmp(markup_str, "pango") == 0) {
new->markup = true;
}
}
if (separator) {