all repos — tint2 @ 8d5c2d8cbbae0425d12c87bb0f9723fc8f836041

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

tint: remove inner loop from the main event loop
o9000 o9000
commit

8d5c2d8cbbae0425d12c87bb0f9723fc8f836041

parent

28bf0a437cf7fac0d4b13e4ce6c30f3704394a9b

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M src/tint.csrc/tint.c

@@ -1219,7 +1219,7 @@ while (read(sn_pipe[0], buffer, sizeof(buffer)) > 0) {

sigchld_handler_async(); } } - while (XPending(server.dsp) > 0) { + if (XPending(server.dsp) > 0) { XNextEvent(server.dsp, &e); #if HAVE_SN if (startup_notifications)