We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5501672 commit b99308bCopy full SHA for b99308b
swaybar/status_line.c
@@ -113,6 +113,11 @@ bool status_handle_readable(struct status_line *status) {
113
114
sway_log(SWAY_DEBUG, "Using text protocol.");
115
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
+ }
121
status->text = status->buffer;
122
// intentional fall-through
123
case PROTOCOL_TEXT:
0 commit comments