all repos — tint2 @ 031bd238493771dbb1a860795ab92c829f4cfd84

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

Print tint2: before geometry dumps
o9000 mrovi9000@gmail.com
commit

031bd238493771dbb1a860795ab92c829f4cfd84

parent

7e2dc91ce782676a84bab180687a09af058824f5

M src/button/button.csrc/button/button.c

@@ -488,7 +488,7 @@ if (button->frontend->icon) {

Imlib_Image tmp = imlib_context_get_image(); imlib_context_set_image(button->frontend->icon); fprintf(stderr, - "%*sIcon: x = %d, y = %d, w = %d, h = %d\n", + "tint2: %*sIcon: x = %d, y = %d, w = %d, h = %d\n", indent, "", button->frontend->iconx,

@@ -499,7 +499,7 @@ if (tmp)

imlib_context_set_image(tmp); } fprintf(stderr, - "%*sText: x = %d, y = %d, w = %d, align = %s, text = %s\n", + "tint2: %*sText: x = %d, y = %d, w = %d, align = %s, text = %s\n", indent, "", button->frontend->textx,
M src/execplugin/execplugin.csrc/execplugin/execplugin.c

@@ -518,7 +518,7 @@ if (execp->backend->has_icon && execp->backend->icon) {

Imlib_Image tmp = imlib_context_get_image(); imlib_context_set_image(execp->backend->icon); fprintf(stderr, - "%*sIcon: x = %d, y = %d, w = %d, h = %d\n", + "tint2: %*sIcon: x = %d, y = %d, w = %d, h = %d\n", indent, "", execp->frontend->iconx,

@@ -529,7 +529,7 @@ if (tmp)

imlib_context_set_image(tmp); } fprintf(stderr, - "%*sText: x = %d, y = %d, w = %d, align = %s, text = %s\n", + "tint2: %*sText: x = %d, y = %d, w = %d, align = %s, text = %s\n", indent, "", execp->frontend->textx,
M src/systray/systraybar.csrc/systray/systraybar.c

@@ -257,7 +257,7 @@ indent += 2;

for (GSList *l = tray->list_icons; l; l = l->next) { TrayWindow *traywin = (TrayWindow *)l->data; fprintf(stderr, - "%*sIcon: x = %d, y = %d, w = %d, h = %d, name = %s\n", + "tint2: %*sIcon: x = %d, y = %d, w = %d, h = %d, name = %s\n", indent, "", traywin->x,
M src/taskbar/task.csrc/taskbar/task.c

@@ -466,7 +466,7 @@ Task *task = (Task *)obj;

Panel *panel = (Panel *)task->area.panel; fprintf(stderr, - "%*sText: x = %d, y = %d, w = %d, h = %d, align = %s, text = %s\n", + "tint2: %*sText: x = %d, y = %d, w = %d, h = %d, align = %s, text = %s\n", indent, "", (int)panel->g_task.text_posx,

@@ -476,7 +476,7 @@ task->_text_height,

panel->g_task.centered ? "center" : "left", task->title); fprintf(stderr, - "%*sIcon: x = %d, y = %d, w = h = %d\n", + "tint2: %*sIcon: x = %d, y = %d, w = h = %d\n", indent, "", task->_icon_x,
M src/util/area.csrc/util/area.c

@@ -850,7 +850,7 @@ fprintf(stderr, "tint2: %*shidden\n", indent, "");

return; } fprintf(stderr, - "%*sBox: x = %d, y = %d, w = %d, h = %d, desired size = %d\n", + "tint2: %*sBox: x = %d, y = %d, w = %d, h = %d, desired size = %d\n", indent, "", area->posx,

@@ -859,7 +859,7 @@ area->width,

area->height, compute_desired_size(area)); fprintf(stderr, - "%*sBorder: left = %d, right = %d, top = %d, bottom = %d\n", + "tint2: %*sBorder: left = %d, right = %d, top = %d, bottom = %d\n", indent, "", left_border_width(area),

@@ -867,7 +867,7 @@ right_border_width(area),

top_border_width(area), bottom_border_width(area)); fprintf(stderr, - "%*sPadding: left = right = %d, top = bottom = %d, spacing = %d\n", + "tint2: %*sPadding: left = right = %d, top = bottom = %d, spacing = %d\n", indent, "", area->paddingxlr,