Skip to content

Commit b99308b

Browse files
committed
swaybar: only display the last status line
1 parent 5501672 commit b99308b

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

swaybar/status_line.c

+5
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,11 @@ bool status_handle_readable(struct status_line *status) {
113113

114114
sway_log(SWAY_DEBUG, "Using text protocol.");
115115
status->protocol = PROTOCOL_TEXT;
116+
char *last_newline = strrchr(status->buffer, '\n');
117+
if (last_newline != NULL) {
118+
status->buffer_index = strlen(last_newline + 1);
119+
memmove(status->buffer, last_newline + 1, status->buffer_index + 1);
120+
}
116121
status->text = status->buffer;
117122
// intentional fall-through
118123
case PROTOCOL_TEXT:

0 commit comments

Comments
 (0)