Add move [container|window] [to] con_id <con_id>

This commit is contained in:
Olivia Taliesin 2022-02-15 14:47:35 -07:00
parent 471099d82e
commit 788ebe76aa
No known key found for this signature in database
GPG key ID: A8F45F29DFFB021B
4 changed files with 35 additions and 2 deletions

View file

@ -373,4 +373,9 @@ bool container_is_sticky_or_child(struct sway_container *con);
*/
int container_squash(struct sway_container *con);
bool container_has_con_id(struct sway_container *con, size_t *con_id);
/** Returns a container with the given con_id */
struct sway_container *container_find_con_id(size_t *con_id);
#endif