Skip to content

Commit

Permalink
Merge pull request #250 from dm9pZCAq/master
Browse files Browse the repository at this point in the history
make bar always below other windows
  • Loading branch information
LemonBoy committed Sep 2, 2024
2 parents 5420c86 + 7e357c6 commit 59b0d28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lemonbar.c
Original file line number Diff line number Diff line change
Expand Up @@ -1318,7 +1318,7 @@ init (char *wm_name)

// Make sure that the window really gets in the place it's supposed to be
// Some WM such as Openbox need this
xcb_configure_window(c, mon->window, XCB_CONFIG_WINDOW_X | XCB_CONFIG_WINDOW_Y, (const uint32_t []){ mon->x, mon->y });
xcb_configure_window(c, mon->window, XCB_CONFIG_WINDOW_X | XCB_CONFIG_WINDOW_Y | XCB_CONFIG_WINDOW_STACK_MODE, (const uint32_t []){ mon->x, mon->y, XCB_STACK_MODE_BELOW });

// Set the WM_NAME atom to the user specified value
if (wm_name)
Expand Down

0 comments on commit 59b0d28

Please sign in to comment.