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/commands.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/commands.h')
-rw-r--r-- | include/sway/commands.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/sway/commands.h b/include/sway/commands.h index b895d5f2..920e8596 100644 --- a/include/sway/commands.h +++ b/include/sway/commands.h @@ -98,6 +98,11 @@ struct sway_container *container_find_resize_parent(struct sway_container *con, uint32_t edge); /** + * Effect handlers value parsers + */ +bool cmd_corner_radius_parse_value(char *arg, int* result); + +/** * Handlers shared by exec and exec_always. */ sway_cmd cmd_exec_validate; @@ -157,6 +162,7 @@ sway_cmd cmd_input; sway_cmd cmd_seat; sway_cmd cmd_ipc; sway_cmd cmd_kill; +sway_cmd cmd_layer_effects; sway_cmd cmd_layout; sway_cmd cmd_log_colors; sway_cmd cmd_mark; |