diff options
author | Drew DeVault <sir@cmpwn.com> | 2015-09-12 10:29:11 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2015-09-12 10:29:11 -0400 |
commit | 9c8f1fb9649c5673cd6b42230c0784f099a62db7 (patch) | |
tree | bb5eccfddb8b8d56e387327908490daeca2c42a7 /include/config.h | |
parent | f5343adae4d631e4cdade7869b4d73fc97b4ac5f (diff) | |
parent | f76f9e2eea15ee4606c23139e9a4c8ce41a4ab18 (diff) | |
download | sway-9c8f1fb9649c5673cd6b42230c0784f099a62db7.tar.xz |
Merge pull request #179 from taiyu-len/master
new_workspace null behavior + testmap functions + regex
Diffstat (limited to 'include/config.h')
-rw-r--r-- | include/config.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/config.h b/include/config.h index 676218c8..04db3e5c 100644 --- a/include/config.h +++ b/include/config.h @@ -63,6 +63,10 @@ bool load_config(const char *file); bool read_config(FILE *file, bool is_active); char *do_var_replacement(char *str); +// Find workspace_output from config by workspace or output name +struct workspace_output *wsop_find_workspace(const char *); +struct workspace_output *wsop_find_output(const char *); + extern struct sway_config *config; #endif |