sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit a519fb6fde42870bf6a72f214555ca62ffbe2832
parent 4e4d0c519140ae9c7c90e358d18bd6cd75413e30
Author: Ryan Dwyer <ryandwyer1@gmail.com>
Date:   Wed,  3 Oct 2018 20:33:32 +1000

Fix tiling criteria

Diffstat:
Msway/criteria.c | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/sway/criteria.c b/sway/criteria.c @@ -339,6 +339,8 @@ static enum criteria_token token_from_name(char *name) { return T_URGENT; } else if (strcmp(name, "workspace") == 0) { return T_WORKSPACE; + } else if (strcmp(name, "tiling") == 0) { + return T_TILING; } else if (strcmp(name, "floating") == 0) { return T_FLOATING; }