summaryrefslogtreecommitdiffstats
path: root/swaybar
diff options
context:
space:
mode:
Diffstat (limited to 'swaybar')
-rw-r--r--swaybar/bar.c30
-rw-r--r--swaybar/config.c2
-rw-r--r--swaybar/ipc.c11
-rw-r--r--swaybar/render.c97
-rw-r--r--swaybar/tray/tray.c8
5 files changed, 93 insertions, 55 deletions
diff --git a/swaybar/bar.c b/swaybar/bar.c
index 7aed4dca..d36367fc 100644
--- a/swaybar/bar.c
+++ b/swaybar/bar.c
@@ -59,6 +59,7 @@ static void swaybar_output_free(struct swaybar_output *output) {
59 free_workspaces(&output->workspaces); 59 free_workspaces(&output->workspaces);
60 wl_list_remove(&output->link); 60 wl_list_remove(&output->link);
61 free(output->name); 61 free(output->name);
62 free(output->identifier);
62 free(output); 63 free(output);
63} 64}
64 65
@@ -166,13 +167,15 @@ bool determine_bar_visibility(struct swaybar *bar, bool moving_layer) {
166 return visible; 167 return visible;
167} 168}
168 169
169static bool bar_uses_output(struct swaybar *bar, const char *name) { 170static bool bar_uses_output(struct swaybar_output *output) {
170 if (bar->config->all_outputs) { 171 if (output->bar->config->all_outputs) {
171 return true; 172 return true;
172 } 173 }
174 char *identifier = output->identifier;
173 struct config_output *coutput; 175 struct config_output *coutput;
174 wl_list_for_each(coutput, &bar->config->outputs, link) { 176 wl_list_for_each(coutput, &output->bar->config->outputs, link) {
175 if (strcmp(coutput->name, name) == 0) { 177 if (strcmp(coutput->name, output->name) == 0 ||
178 (identifier && strcmp(coutput->name, identifier) == 0)) {
176 return true; 179 return true;
177 } 180 }
178 } 181 }
@@ -233,7 +236,7 @@ static void xdg_output_handle_done(void *data,
233 struct swaybar *bar = output->bar; 236 struct swaybar *bar = output->bar;
234 237
235 assert(output->name != NULL); 238 assert(output->name != NULL);
236 if (!bar_uses_output(bar, output->name)) { 239 if (!bar_uses_output(output)) {
237 swaybar_output_free(output); 240 swaybar_output_free(output);
238 return; 241 return;
239 } 242 }
@@ -258,7 +261,22 @@ static void xdg_output_handle_name(void *data,
258 261
259static void xdg_output_handle_description(void *data, 262static void xdg_output_handle_description(void *data,
260 struct zxdg_output_v1 *xdg_output, const char *description) { 263 struct zxdg_output_v1 *xdg_output, const char *description) {
261 // Who cares 264 // wlroots currently sets the description to `make model serial (name)`
265 // If this changes in the future, this will need to be modified.
266 struct swaybar_output *output = data;
267 free(output->identifier);
268 output->identifier = NULL;
269 char *paren = strrchr(description, '(');
270 if (paren) {
271 size_t length = paren - description;
272 output->identifier = malloc(length);
273 if (!output->identifier) {
274 wlr_log(WLR_ERROR, "Failed to allocate output identifier");
275 return;
276 }
277 strncpy(output->identifier, description, length);
278 output->identifier[length - 1] = '\0';
279 }
262} 280}
263 281
264struct zxdg_output_v1_listener xdg_output_listener = { 282struct zxdg_output_v1_listener xdg_output_listener = {
diff --git a/swaybar/config.c b/swaybar/config.c
index 9cafe061..d4cc9b1a 100644
--- a/swaybar/config.c
+++ b/swaybar/config.c
@@ -37,6 +37,8 @@ struct swaybar_config *init_config(void) {
37 config->workspace_buttons = true; 37 config->workspace_buttons = true;
38 config->bindings = create_list(); 38 config->bindings = create_list();
39 wl_list_init(&config->outputs); 39 wl_list_init(&config->outputs);
40 config->status_padding = 1;
41 config->status_edge_padding = 3;
40 42
41 /* height */ 43 /* height */
42 config->height = 0; 44 config->height = 0;
diff --git a/swaybar/ipc.c b/swaybar/ipc.c
index 8e7a542e..bc5c28b4 100644
--- a/swaybar/ipc.c
+++ b/swaybar/ipc.c
@@ -157,7 +157,7 @@ static bool ipc_parse_config(
157 json_object *font, *gaps, *bar_height, *wrap_scroll, *workspace_buttons; 157 json_object *font, *gaps, *bar_height, *wrap_scroll, *workspace_buttons;
158 json_object *strip_workspace_numbers, *strip_workspace_name; 158 json_object *strip_workspace_numbers, *strip_workspace_name;
159 json_object *binding_mode_indicator, *verbose, *colors, *sep_symbol; 159 json_object *binding_mode_indicator, *verbose, *colors, *sep_symbol;
160 json_object *outputs, *bindings; 160 json_object *outputs, *bindings, *status_padding, *status_edge_padding;
161 json_object_object_get_ex(bar_config, "mode", &mode); 161 json_object_object_get_ex(bar_config, "mode", &mode);
162 json_object_object_get_ex(bar_config, "hidden_state", &hidden_state); 162 json_object_object_get_ex(bar_config, "hidden_state", &hidden_state);
163 json_object_object_get_ex(bar_config, "position", &position); 163 json_object_object_get_ex(bar_config, "position", &position);
@@ -176,6 +176,9 @@ static bool ipc_parse_config(
176 json_object_object_get_ex(bar_config, "outputs", &outputs); 176 json_object_object_get_ex(bar_config, "outputs", &outputs);
177 json_object_object_get_ex(bar_config, "pango_markup", &markup); 177 json_object_object_get_ex(bar_config, "pango_markup", &markup);
178 json_object_object_get_ex(bar_config, "bindings", &bindings); 178 json_object_object_get_ex(bar_config, "bindings", &bindings);
179 json_object_object_get_ex(bar_config, "status_padding", &status_padding);
180 json_object_object_get_ex(bar_config, "status_edge_padding",
181 &status_edge_padding);
179 if (status_command) { 182 if (status_command) {
180 free(config->status_command); 183 free(config->status_command);
181 config->status_command = strdup(json_object_get_string(status_command)); 184 config->status_command = strdup(json_object_get_string(status_command));
@@ -209,6 +212,12 @@ static bool ipc_parse_config(
209 if (bar_height) { 212 if (bar_height) {
210 config->height = json_object_get_int(bar_height); 213 config->height = json_object_get_int(bar_height);
211 } 214 }
215 if (status_padding) {
216 config->status_padding = json_object_get_int(status_padding);
217 }
218 if (status_edge_padding) {
219 config->status_edge_padding = json_object_get_int(status_edge_padding);
220 }
212 if (gaps) { 221 if (gaps) {
213 json_object *top = json_object_object_get(gaps, "top"); 222 json_object *top = json_object_object_get(gaps, "top");
214 if (top) { 223 if (top) {
diff --git a/swaybar/render.c b/swaybar/render.c
index e149d3a2..12dd3b07 100644
--- a/swaybar/render.c
+++ b/swaybar/render.c
@@ -35,7 +35,8 @@ static uint32_t render_status_line_error(cairo_t *cairo,
35 cairo_set_source_u32(cairo, 0xFF0000FF); 35 cairo_set_source_u32(cairo, 0xFF0000FF);
36 36
37 int margin = 3 * output->scale; 37 int margin = 3 * output->scale;
38 int ws_vertical_padding = WS_VERTICAL_PADDING * output->scale; 38 double ws_vertical_padding =
39 output->bar->config->status_padding * output->scale;
39 40
40 char *font = output->bar->config->font; 41 char *font = output->bar->config->font;
41 int text_width, text_height; 42 int text_width, text_height;
@@ -72,7 +73,7 @@ static uint32_t render_status_line_text(cairo_t *cairo,
72 get_text_size(cairo, config->font, &text_width, &text_height, NULL, 73 get_text_size(cairo, config->font, &text_width, &text_height, NULL,
73 output->scale, config->pango_markup, "%s", text); 74 output->scale, config->pango_markup, "%s", text);
74 75
75 int ws_vertical_padding = WS_VERTICAL_PADDING * output->scale; 76 double ws_vertical_padding = config->status_padding * output->scale;
76 int margin = 3 * output->scale; 77 int margin = 3 * output->scale;
77 78
78 uint32_t ideal_height = text_height + ws_vertical_padding * 2; 79 uint32_t ideal_height = text_height + ws_vertical_padding * 2;
@@ -92,13 +93,24 @@ static uint32_t render_status_line_text(cairo_t *cairo,
92 return output->height; 93 return output->height;
93} 94}
94 95
95static void render_sharp_line(cairo_t *cairo, uint32_t color, 96static void render_sharp_rectangle(cairo_t *cairo, uint32_t color,
96 double x, double y, double width, double height) { 97 double x, double y, double width, double height) {
98 cairo_save(cairo);
97 cairo_set_source_u32(cairo, color); 99 cairo_set_source_u32(cairo, color);
100 cairo_set_antialias(cairo, CAIRO_ANTIALIAS_NONE);
101 cairo_rectangle(cairo, x, y, width, height);
102 cairo_fill(cairo);
103 cairo_restore(cairo);
104}
105
106static void render_sharp_line(cairo_t *cairo, uint32_t color,
107 double x, double y, double width, double height) {
98 if (width > 1 && height > 1) { 108 if (width > 1 && height > 1) {
99 cairo_rectangle(cairo, x, y, width, height); 109 render_sharp_rectangle(cairo, color, x, y, width, height);
100 cairo_fill(cairo);
101 } else { 110 } else {
111 cairo_save(cairo);
112 cairo_set_source_u32(cairo, color);
113 cairo_set_antialias(cairo, CAIRO_ANTIALIAS_NONE);
102 if (width == 1) { 114 if (width == 1) {
103 x += 0.5; 115 x += 0.5;
104 height += y; 116 height += y;
@@ -113,6 +125,7 @@ static void render_sharp_line(cairo_t *cairo, uint32_t color,
113 cairo_set_line_width(cairo, 1.0); 125 cairo_set_line_width(cairo, 1.0);
114 cairo_line_to(cairo, width, height); 126 cairo_line_to(cairo, width, height);
115 cairo_stroke(cairo); 127 cairo_stroke(cairo);
128 cairo_restore(cairo);
116 } 129 }
117} 130}
118 131
@@ -143,7 +156,7 @@ static uint32_t render_status_block(cairo_t *cairo,
143 output->scale, block->markup, "%s", block->full_text); 156 output->scale, block->markup, "%s", block->full_text);
144 157
145 int margin = 3 * output->scale; 158 int margin = 3 * output->scale;
146 int ws_vertical_padding = WS_VERTICAL_PADDING * 2; 159 double ws_vertical_padding = config->status_padding * output->scale;
147 160
148 int width = text_width; 161 int width = text_width;
149 if (width < block->min_width) { 162 if (width < block->min_width) {
@@ -160,12 +173,12 @@ static uint32_t render_status_block(cairo_t *cairo,
160 173
161 *x -= width; 174 *x -= width;
162 if ((block->border || block->urgent) && block->border_left > 0) { 175 if ((block->border || block->urgent) && block->border_left > 0) {
163 *x -= (block->border_left + margin); 176 *x -= (block->border_left * output->scale + margin);
164 block_width += block->border_left + margin; 177 block_width += block->border_left * output->scale + margin;
165 } 178 }
166 if ((block->border || block->urgent) && block->border_right > 0) { 179 if ((block->border || block->urgent) && block->border_right > 0) {
167 *x -= (block->border_right + margin); 180 *x -= (block->border_right * output->scale + margin);
168 block_width += block->border_right + margin; 181 block_width += block->border_right * output->scale + margin;
169 } 182 }
170 183
171 int sep_width, sep_height; 184 int sep_width, sep_height;
@@ -185,8 +198,8 @@ static uint32_t render_status_block(cairo_t *cairo,
185 } 198 }
186 } 199 }
187 *x -= sep_block_width; 200 *x -= sep_block_width;
188 } else { 201 } else if (config->status_edge_padding) {
189 *x -= margin; 202 *x -= config->status_edge_padding * output->scale;
190 } 203 }
191 204
192 uint32_t height = output->height * output->scale; 205 uint32_t height = output->height * output->scale;
@@ -203,48 +216,41 @@ static uint32_t render_status_block(cairo_t *cairo,
203 wl_list_insert(&output->hotspots, &hotspot->link); 216 wl_list_insert(&output->hotspots, &hotspot->link);
204 } 217 }
205 218
206 double pos = *x; 219 double x_pos = *x;
220 double y_pos = ws_vertical_padding;
221 double render_height = height - ws_vertical_padding * 2;
207 222
208 uint32_t bg_color = block->urgent 223 uint32_t bg_color = block->urgent
209 ? config->colors.urgent_workspace.background : block->background; 224 ? config->colors.urgent_workspace.background : block->background;
210 if (bg_color) { 225 if (bg_color) {
211 cairo_set_source_u32(cairo, bg_color); 226 render_sharp_rectangle(cairo, bg_color, x_pos, y_pos,
212 cairo_rectangle(cairo, pos - 0.5 * output->scale, 227 block_width, render_height);
213 output->scale, width, height);
214 cairo_fill(cairo);
215 } 228 }
216 229
217 uint32_t border_color = block->urgent 230 uint32_t border_color = block->urgent
218 ? config->colors.urgent_workspace.border : block->border; 231 ? config->colors.urgent_workspace.border : block->border;
219 if (border_color && block->border_top > 0) { 232 if (border_color && block->border_top > 0) {
220 render_sharp_line(cairo, border_color, 233 render_sharp_line(cairo, border_color, x_pos, y_pos,
221 pos - 0.5 * output->scale, output->scale, 234 block_width, block->border_top * output->scale);
222 text_width, block->border_top);
223 } 235 }
224 if (border_color && block->border_bottom > 0) { 236 if (border_color && block->border_bottom > 0) {
225 render_sharp_line(cairo, border_color, 237 render_sharp_line(cairo, border_color, x_pos,
226 pos - 0.5 * output->scale, 238 y_pos + render_height - block->border_bottom * output->scale,
227 height - output->scale - block->border_bottom, 239 block_width, block->border_bottom * output->scale);
228 text_width, block->border_bottom);
229 }
230 if (border_color != 0 && block->border_left > 0) {
231 render_sharp_line(cairo, border_color,
232 pos - 0.5 * output->scale, output->scale,
233 block->border_left, height);
234 } 240 }
235 if (border_color != 0 && block->border_right > 0) { 241 if (border_color && block->border_left > 0) {
236 render_sharp_line(cairo, border_color, 242 render_sharp_line(cairo, border_color, x_pos, y_pos,
237 pos - 0.5 * output->scale + text_width, output->scale, 243 block->border_left * output->scale, render_height);
238 block->border_right, height); 244 x_pos += block->border_left * output->scale + margin;
239 } 245 }
240 246
241 double offset = 0; 247 double offset = 0;
242 if (strncmp(block->align, "left", 5) == 0) { 248 if (strncmp(block->align, "left", 5) == 0) {
243 offset = pos; 249 offset = x_pos;
244 } else if (strncmp(block->align, "right", 5) == 0) { 250 } else if (strncmp(block->align, "right", 5) == 0) {
245 offset = pos + width - text_width; 251 offset = x_pos + width - text_width;
246 } else if (strncmp(block->align, "center", 6) == 0) { 252 } else if (strncmp(block->align, "center", 6) == 0) {
247 offset = pos + (width - text_width) / 2; 253 offset = x_pos + (width - text_width) / 2;
248 } 254 }
249 cairo_move_to(cairo, offset, height / 2.0 - text_height / 2.0); 255 cairo_move_to(cairo, offset, height / 2.0 - text_height / 2.0);
250 uint32_t color = block->color ? *block->color : config->colors.statusline; 256 uint32_t color = block->color ? *block->color : config->colors.statusline;
@@ -252,14 +258,13 @@ static uint32_t render_status_block(cairo_t *cairo,
252 cairo_set_source_u32(cairo, color); 258 cairo_set_source_u32(cairo, color);
253 pango_printf(cairo, config->font, output->scale, 259 pango_printf(cairo, config->font, output->scale,
254 block->markup, "%s", block->full_text); 260 block->markup, "%s", block->full_text);
255 pos += width; 261 x_pos += width;
256 262
257 if (block->border && block->border_right > 0) { 263 if (block->border && block->border_right > 0) {
258 pos += margin; 264 x_pos += margin;
259 render_sharp_line(cairo, block->border, 265 render_sharp_line(cairo, border_color, x_pos, y_pos,
260 pos - 0.5 * output->scale, output->scale, 266 block->border_right * output->scale, render_height);
261 block->border_right, height); 267 x_pos += block->border_right * output->scale;
262 pos += block->border_right;
263 } 268 }
264 269
265 if (!edge && block->separator) { 270 if (!edge && block->separator) {
@@ -269,14 +274,14 @@ static uint32_t render_status_block(cairo_t *cairo,
269 cairo_set_source_u32(cairo, config->colors.separator); 274 cairo_set_source_u32(cairo, config->colors.separator);
270 } 275 }
271 if (config->sep_symbol) { 276 if (config->sep_symbol) {
272 offset = pos + (sep_block_width - sep_width) / 2; 277 offset = x_pos + (sep_block_width - sep_width) / 2;
273 cairo_move_to(cairo, offset, height / 2.0 - sep_height / 2.0); 278 cairo_move_to(cairo, offset, height / 2.0 - sep_height / 2.0);
274 pango_printf(cairo, config->font, output->scale, false, 279 pango_printf(cairo, config->font, output->scale, false,
275 "%s", config->sep_symbol); 280 "%s", config->sep_symbol);
276 } else { 281 } else {
277 cairo_set_line_width(cairo, 1); 282 cairo_set_line_width(cairo, 1);
278 cairo_move_to(cairo, pos + sep_block_width / 2, margin); 283 cairo_move_to(cairo, x_pos + sep_block_width / 2, margin);
279 cairo_line_to(cairo, pos + sep_block_width / 2, height - margin); 284 cairo_line_to(cairo, x_pos + sep_block_width / 2, height - margin);
280 cairo_stroke(cairo); 285 cairo_stroke(cairo);
281 } 286 }
282 } 287 }
@@ -286,7 +291,7 @@ static uint32_t render_status_block(cairo_t *cairo,
286static uint32_t render_status_line_i3bar(cairo_t *cairo, 291static uint32_t render_status_line_i3bar(cairo_t *cairo,
287 struct swaybar_output *output, double *x) { 292 struct swaybar_output *output, double *x) {
288 uint32_t max_height = 0; 293 uint32_t max_height = 0;
289 bool edge = true; 294 bool edge = *x == output->width * output->scale;
290 struct i3bar_block *block; 295 struct i3bar_block *block;
291 wl_list_for_each(block, &output->bar->status->blocks, link) { 296 wl_list_for_each(block, &output->bar->status->blocks, link) {
292 uint32_t h = render_status_block(cairo, output, block, x, edge); 297 uint32_t h = render_status_block(cairo, output, block, x, edge);
diff --git a/swaybar/tray/tray.c b/swaybar/tray/tray.c
index 0c3517cb..d5d0c84e 100644
--- a/swaybar/tray/tray.c
+++ b/swaybar/tray/tray.c
@@ -101,13 +101,17 @@ void tray_in(int fd, short mask, void *data) {
101} 101}
102 102
103static int cmp_output(const void *item, const void *cmp_to) { 103static int cmp_output(const void *item, const void *cmp_to) {
104 return strcmp(item, cmp_to); 104 const struct swaybar_output *output = cmp_to;
105 if (output->identifier && strcmp(item, output->identifier) == 0) {
106 return 0;
107 }
108 return strcmp(item, output->name);
105} 109}
106 110
107uint32_t render_tray(cairo_t *cairo, struct swaybar_output *output, double *x) { 111uint32_t render_tray(cairo_t *cairo, struct swaybar_output *output, double *x) {
108 struct swaybar_config *config = output->bar->config; 112 struct swaybar_config *config = output->bar->config;
109 if (config->tray_outputs) { 113 if (config->tray_outputs) {
110 if (list_seq_find(config->tray_outputs, cmp_output, output->name) == -1) { 114 if (list_seq_find(config->tray_outputs, cmp_output, output) == -1) {
111 return 0; 115 return 0;
112 } 116 }
113 } // else display on all 117 } // else display on all