diff options
author | Erik Reider <[email protected]> | 2023-05-19 21:14:06 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2023-05-19 21:14:06 +0200 |
commit | 415e072a3af292937f0b4c41acadafaee6958437 (patch) | |
tree | 354de329d9cbf66054260d50aebefd86a26d5055 /include/sway/config.h | |
parent | 67078429428f0a97333c107da8a3ad8fb678a602 (diff) |
Add blur, shadow, and corner radius to layer-shell surfaces (#144)
Co-authored-by: Will McKinnon <[email protected]>
Diffstat (limited to 'include/sway/config.h')
-rw-r--r-- | include/sway/config.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/sway/config.h b/include/sway/config.h index d84eef69..04e2969e 100644 --- a/include/sway/config.h +++ b/include/sway/config.h @@ -500,6 +500,8 @@ struct sway_config { bool titlebar_separator; bool scratchpad_minimize; + list_t *layer_criteria; + char *swaynag_command; struct swaynag_instance swaynag_config_errors; list_t *symbols; @@ -765,6 +767,8 @@ int config_get_blur_size(); bool config_should_parameters_blur(); +bool config_should_parameters_shadow(); + /* Global config singleton. */ extern struct sway_config *config; |