diff options
author | Ryan Dwyer <ryandwyer1@gmail.com> | 2018-05-05 12:53:49 +1000 |
---|---|---|
committer | Ryan Dwyer <ryandwyer1@gmail.com> | 2018-05-06 08:25:22 +1000 |
commit | 556ff5f50efe7372f0147339d6c26ed7008acfd2 (patch) | |
tree | ad5c1774aa51ee8a1755154471fb802c626f55ab /sway/commands/font.c | |
parent | 72ce50737d2ac47fdf818e0bdada375ba1208d10 (diff) |
Implement pango support
Implements support for the pango: prefix in the font command.
Closes #1903.
Diffstat (limited to 'sway/commands/font.c')
-rw-r--r-- | sway/commands/font.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/sway/commands/font.c b/sway/commands/font.c index 8e0b51e3..3071ccd8 100644 --- a/sway/commands/font.c +++ b/sway/commands/font.c @@ -12,7 +12,16 @@ struct cmd_results *cmd_font(int argc, char **argv) { } char *font = join_args(argv, argc); free(config->font); - config->font = strdup(font); + + if (strncmp(font, "pango:", 6) == 0) { + config->pango_markup = true; + config->font = strdup(font + 6); + } else { + config->pango_markup = false; + config->font = strdup(font); + } + + free(font); config_update_font_height(true); return cmd_results_new(CMD_SUCCESS, NULL, NULL); } |