aboutsummaryrefslogtreecommitdiffstats
path: root/src/config.c
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2017-01-25 22:53:48 -0500
committerJesse Luehrs <doy@tozt.net>2017-01-25 22:53:48 -0500
commit3df4d06fd663bf19f08343b0d77c20672301b9b2 (patch)
treeca68bbcd8a69798cfd1f76ebbbd2af7b86ce357f /src/config.c
parent4769d154e2c11031fdba4974815d070cf70cb936 (diff)
downloadrunes-3df4d06fd663bf19f08343b0d77c20672301b9b2.tar.gz
runes-3df4d06fd663bf19f08343b0d77c20672301b9b2.zip
make wide emoji configurable
Diffstat (limited to 'src/config.c')
-rw-r--r--src/config.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/config.c b/src/config.c
index 31c4038..961e27e 100644
--- a/src/config.c
+++ b/src/config.c
@@ -449,6 +449,9 @@ static void runes_config_set(RunesConfig *config, char *key, char *val)
else if (!strcmp(key, "bell_is_urgent")) {
config->bell_is_urgent = runes_config_parse_bool(val);
}
+ else if (!strcmp(key, "wide_emoji")) {
+ config->wide_emoji = runes_config_parse_bool(val);
+ }
else if (!strcmp(key, "bgcolor")) {
cairo_pattern_t *newcolor;
newcolor = runes_config_parse_color(val);