summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2018-05-27 08:58:10 -0400
committerLibravatar GitHub <noreply@github.com>2018-05-27 08:58:10 -0400
commita372852c4421d21fa4cdd70014b0174319f3c2db (patch)
tree3ea7ea85566b02169d4643f6a8d634ef0ec504f7 /include
parentxdg-shell: make all toplevels tiled (diff)
parentMerge pull request #2049 from RyanDwyer/criteria-shell (diff)
downloadsway-a372852c4421d21fa4cdd70014b0174319f3c2db.tar.gz
sway-a372852c4421d21fa4cdd70014b0174319f3c2db.tar.zst
sway-a372852c4421d21fa4cdd70014b0174319f3c2db.zip
Merge branch 'master' into xdg-shell-tiled
Diffstat (limited to 'include')
-rw-r--r--include/sway/criteria.h1
-rw-r--r--include/sway/tree/view.h2
2 files changed, 2 insertions, 1 deletions
diff --git a/include/sway/criteria.h b/include/sway/criteria.h
index 74da132c..bd3ca0ac 100644
--- a/include/sway/criteria.h
+++ b/include/sway/criteria.h
@@ -18,6 +18,7 @@ struct criteria {
18 char *target; // workspace or output name for `assign` criteria 18 char *target; // workspace or output name for `assign` criteria
19 19
20 pcre *title; 20 pcre *title;
21 pcre *shell;
21 pcre *app_id; 22 pcre *app_id;
22 pcre *class; 23 pcre *class;
23 pcre *instance; 24 pcre *instance;
diff --git a/include/sway/tree/view.h b/include/sway/tree/view.h
index 0fb8f1b3..a8bf4955 100644
--- a/include/sway/tree/view.h
+++ b/include/sway/tree/view.h
@@ -201,7 +201,7 @@ const char *view_get_window_role(struct sway_view *view);
201 201
202uint32_t view_get_window_type(struct sway_view *view); 202uint32_t view_get_window_type(struct sway_view *view);
203 203
204const char *view_get_type(struct sway_view *view); 204const char *view_get_shell(struct sway_view *view);
205 205
206void view_configure(struct sway_view *view, double ox, double oy, int width, 206void view_configure(struct sway_view *view, double ox, double oy, int width,
207 int height); 207 int height);