mirror of
https://github.com/vale981/bspwm
synced 2025-03-06 02:01:42 -05:00
Use full layout name
This commit is contained in:
parent
4de5f0d4b2
commit
939d569dc0
1 changed files with 1 additions and 1 deletions
2
tree.c
2
tree.c
|
@ -239,7 +239,7 @@ void put_status(void)
|
|||
printf("%c%c%s:", (m->desk == d ? 'D' : (d->root != NULL ? 'd' : '_')), (urgent ? '!' : '_'), d->name);
|
||||
}
|
||||
}
|
||||
printf("L%c:W%X\n", (mon->desk->layout == LAYOUT_TILED ? 'T' : 'M'), (mon->desk->focus == NULL ? 0 : mon->desk->focus->client->window));
|
||||
printf("L%s:W%X\n", (mon->desk->layout == LAYOUT_TILED ? "tiled" : "monocle"), (mon->desk->focus == NULL ? 0 : mon->desk->focus->client->window));
|
||||
fflush(stdout);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue