aboutsummaryrefslogtreecommitdiff
path: root/swaybar
diff options
context:
space:
mode:
authorcrondog <crondog@gmail.com>2015-12-20 15:00:09 +1100
committercrondog <crondog@gmail.com>2015-12-20 15:47:32 +1100
commitda6cd3cef7c62581f812203371c5c9009c40dd10 (patch)
treea74bddcb392792b5090e1ccfb878dba9c6603efb /swaybar
parent3777c8993b8967aa3fd313c2c7a9304a798efa37 (diff)
swaybar: use height from config
Diffstat (limited to 'swaybar')
-rw-r--r--swaybar/main.c30
1 files changed, 19 insertions, 11 deletions
diff --git a/swaybar/main.c b/swaybar/main.c
index 243ef2a9..4d23e087 100644
--- a/swaybar/main.c
+++ b/swaybar/main.c
@@ -229,6 +229,17 @@ void bar_ipc_init(int outputi, const char *bar_id) {
desktop_shell_set_panel_position(registry->desktop_shell, parse_position(json_object_get_string(position)));
}
+ if (bar_height) {
+ if (json_object_get_int(bar_height) == -1) {
+ int width, height;
+ get_text_size(window, &width, &height, "Test string for measuring purposes");
+ window->height = height + MARGIN * 2;
+ }
+ else {
+ window->height = json_object_get_int(bar_height) + MARGIN * 2;
+ }
+ }
+
if (_colors) {
json_object *background, *statusline, *separator;
json_object *focused_workspace_border, *focused_workspace_bg, *focused_workspace_text;
@@ -321,7 +332,7 @@ void render() {
int width, height;
get_text_size(window, &width, &height, "%s", line);
- cairo_move_to(window->cairo, window->width - MARGIN - width, MARGIN);
+ cairo_move_to(window->cairo, window->width - MARGIN - width, (window->height - height) / 2 );
pango_printf(window, "%s", line);
// Workspaces
@@ -350,7 +361,7 @@ void render() {
cairo_stroke(window->cairo);
cairo_set_source_u32(window->cairo, box_colors.text);
- cairo_move_to(window->cairo, x + MARGIN, MARGIN);
+ cairo_move_to(window->cairo, x + MARGIN, (window->height - height) / 2 );
pango_printf(window, "%s", ws->name);
x += width + MARGIN * 2 + MARGIN;
@@ -466,6 +477,12 @@ int main(int argc, char **argv) {
int desired_output = atoi(argv[optind]);
struct output_state *output = registry->outputs->items[desired_output];
+
+ window = window_setup(registry, output->width, 30, false);
+ if (!window) {
+ sway_abort("Failed to create window.");
+ }
+ desktop_shell_set_panel(registry->desktop_shell, output->output, window->surface);
bar_ipc_init(desired_output, bar_id);
@@ -491,15 +508,6 @@ int main(int argc, char **argv) {
line[0] = '\0';
}
- window = window_setup(registry, output->width, 30, false);
- if (!window) {
- sway_abort("Failed to create window.");
- }
- desktop_shell_set_panel(registry->desktop_shell, output->output, window->surface);
-
- int width, height;
- get_text_size(window, &width, &height, "Test string for measuring purposes");
- window->height = height + MARGIN * 2;
poll_for_update();