aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2018-11-11 11:30:27 -0500
committerLibravatar GitHub <noreply@github.com>2018-11-11 11:30:27 -0500
commit101515eb0c0039e8f67b7d3c8269a8898d8760ac (patch)
tree458a3acb6db39a78d26b4ce38ea637aa21812e29 /include
parentMerge pull request #3098 from c-edw/feature/RefactorArgParse (diff)
parentAllow multiple outputs for workspace output (diff)
downloadsway-101515eb0c0039e8f67b7d3c8269a8898d8760ac.tar.gz
sway-101515eb0c0039e8f67b7d3c8269a8898d8760ac.tar.zst
sway-101515eb0c0039e8f67b7d3c8269a8898d8760ac.zip
Merge pull request #3108 from RedSoxFan/workspace-output-improved
Allow multiple outputs for workspace output
Diffstat (limited to 'include')
-rw-r--r--include/sway/config.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sway/config.h b/include/sway/config.h
index cd56c3dc..79c4359b 100644
--- a/include/sway/config.h
+++ b/include/sway/config.h
@@ -183,7 +183,7 @@ struct side_gaps {
183 */ 183 */
184struct workspace_config { 184struct workspace_config {
185 char *workspace; 185 char *workspace;
186 char *output; 186 list_t *outputs;
187 int gaps_inner; 187 int gaps_inner;
188 struct side_gaps gaps_outer; 188 struct side_gaps gaps_outer;
189}; 189};