summaryrefslogtreecommitdiff
path: root/sway/config.c
diff options
context:
space:
mode:
authoremersion <[email protected]>2018-06-07 19:29:26 +0100
committerGitHub <[email protected]>2018-06-07 19:29:26 +0100
commit07bee8cffe60b4a23ddd637461d8290f25f99be2 (patch)
treee3174539676a876ee882e72af579ba9e63e468e6 /sway/config.c
parent2e289831ee3198f36e2c02bd4542fa4f6646a81b (diff)
parentf4870d5432b9d90865fee177465ff9cf22fab51c (diff)
Merge pull request #2084 from RedSoxFan/runtime-var-expansion
Runtime variable expansion
Diffstat (limited to 'sway/config.c')
-rw-r--r--sway/config.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/sway/config.c b/sway/config.c
index 445c3d55..0e41df04 100644
--- a/sway/config.c
+++ b/sway/config.c
@@ -657,6 +657,14 @@ char *do_var_replacement(char *str) {
continue;
}
}
+ // Unescape double $ and move on
+ if (find[1] == '$') {
+ size_t length = strlen(find + 1);
+ strncpy(find, find + 1, length);
+ find[length] = '\0';
+ ++find;
+ continue;
+ }
// Find matching variable
for (i = 0; i < config->symbols->length; ++i) {
struct sway_variable *var = config->symbols->items[i];