Skip to content

Instantly share code, notes, and snippets.

@woodensquares
woodensquares / logs.txt
Created May 7, 2016 04:16
logs for the delayed close on :0.1
:0.0 terminal focused
06/05/16 09:00:38 PM - handlers.c:handle_event:1416 - event type 18, xkb_base 85
06/05/16 09:00:38 PM - handlers.c:handle_unmap_notify_event:518 - UnmapNotify for 0x02200005 (received from 0x000004fb), serial 1935
06/05/16 09:00:38 PM - Not a managed window, ignoring UnmapNotify event
06/05/16 09:00:38 PM - handlers.c:handle_event:1416 - event type 10, xkb_base 85
06/05/16 09:00:38 PM - handlers.c:handle_event:1416 - event type 9, xkb_base 85
06/05/16 09:00:38 PM - handlers.c:handle_focus_in:1190 - focus change in, for window 0x02000005
06/05/16 09:00:38 PM - handlers.c:handle_focus_in:1194 - That is con 0x1fec300 / (null)
06/05/16 09:00:38 PM - handlers.c:handle_focus_in:1203 - notify detail is pointer, ignoring this event
@woodensquares
woodensquares / ignore.diff
Last active November 26, 2021 19:49
Ignore specific workspaces in pager
diff -W 183 -duw --recursive i3.clean/i3bar/include/configuration.h i3/i3bar/include/configuration.h
--- i3.clean/i3bar/include/configuration.h 2021-11-17 09:55:19.357028521 -0600
+++ i3/i3bar/include/configuration.h 2021-11-17 09:55:52.902415932 -0600
@@ -54,6 +54,7 @@
char *command;
char *fontname;
i3String *separator_symbol;
+ i3String *ignore_end;
TAILQ_HEAD(tray_outputs_head, tray_output_t) tray_outputs;
int tray_padding;
diff --git a/include/xcb.h b/include/xcb.h
index b7eed2c..c51adf4 100644
--- a/include/xcb.h
+++ b/include/xcb.h
@@ -51,6 +51,7 @@
ConfigureNotify */ \
XCB_EVENT_MASK_POINTER_MOTION | \
XCB_EVENT_MASK_PROPERTY_CHANGE | \
+ XCB_EVENT_MASK_LEAVE_WINDOW | \
XCB_EVENT_MASK_ENTER_WINDOW)