diff options
author | William McKinnon <[email protected]> | 2022-08-21 17:12:54 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2022-08-21 17:12:54 -0400 |
commit | 5c0086b94422a63587508c34bbac9bde6b313ca3 (patch) | |
tree | 71ff3071045542fddce6c69e0804c9690b24bfef /include/sway/commands.h | |
parent | c5d08f608553f4d12607ab4aa52320e89de50d95 (diff) |
Add rounded corners (#9)
Diffstat (limited to 'include/sway/commands.h')
-rw-r--r-- | include/sway/commands.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/sway/commands.h b/include/sway/commands.h index 2746ef28..1383295d 100644 --- a/include/sway/commands.h +++ b/include/sway/commands.h @@ -17,9 +17,9 @@ struct cmd_handler { * Indicates the result of a command's execution. */ enum cmd_status { - CMD_SUCCESS, /**< The command was successful */ + CMD_SUCCESS, /**< The command was successful */ CMD_FAILURE, /**< The command resulted in an error */ - CMD_INVALID, /**< Unknown command or parser error */ + CMD_INVALID, /**< Unknown command or parser error */ CMD_DEFER, /**< Command execution deferred */ CMD_BLOCK, CMD_BLOCK_COMMANDS, @@ -118,6 +118,7 @@ sway_cmd cmd_client_urgent; sway_cmd cmd_client_placeholder; sway_cmd cmd_client_background; sway_cmd cmd_commands; +sway_cmd cmd_corner_radius; sway_cmd cmd_create_output; sway_cmd cmd_default_border; sway_cmd cmd_default_floating_border; |