summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/sway/config.h4
-rw-r--r--include/sway/tree/workspace.h2
2 files changed, 6 insertions, 0 deletions
diff --git a/include/sway/config.h b/include/sway/config.h
index cabc9cf5..d84eef69 100644
--- a/include/sway/config.h
+++ b/include/sway/config.h
@@ -761,6 +761,10 @@ void translate_keysyms(struct input_config *input_config);
void binding_add_translated(struct sway_binding *binding, list_t *bindings);
+int config_get_blur_size();
+
+bool config_should_parameters_blur();
+
/* Global config singleton. */
extern struct sway_config *config;
diff --git a/include/sway/tree/workspace.h b/include/sway/tree/workspace.h
index b3d93a81..2ff51ea3 100644
--- a/include/sway/tree/workspace.h
+++ b/include/sway/tree/workspace.h
@@ -92,6 +92,8 @@ struct sway_output *workspace_output_get_highest_available(
void workspace_detect_urgent(struct sway_workspace *workspace);
+bool should_workspace_have_blur(struct sway_workspace *ws);
+
void workspace_for_each_container(struct sway_workspace *ws,
void (*f)(struct sway_container *con, void *data), void *data);