make em saveunder
This commit is contained in:
parent
6a953c6a82
commit
ba38a0c856
1 changed files with 9 additions and 4 deletions
|
@ -86,20 +86,25 @@ void focus_startup(gboolean reconfig)
|
||||||
focus_indicator.right.obwin.type = Window_Internal;
|
focus_indicator.right.obwin.type = Window_Internal;
|
||||||
focus_indicator.bottom.obwin.type = Window_Internal;
|
focus_indicator.bottom.obwin.type = Window_Internal;
|
||||||
|
|
||||||
|
attr.save_under = True;
|
||||||
attr.override_redirect = True;
|
attr.override_redirect = True;
|
||||||
attr.background_pixel = BlackPixel(ob_display, ob_screen);
|
attr.background_pixel = BlackPixel(ob_display, ob_screen);
|
||||||
focus_indicator.top.win =
|
focus_indicator.top.win =
|
||||||
createWindow(RootWindow(ob_display, ob_screen),
|
createWindow(RootWindow(ob_display, ob_screen),
|
||||||
CWOverrideRedirect | CWBackPixel, &attr);
|
CWOverrideRedirect | CWBackPixel | CWSaveUnder,
|
||||||
|
&attr);
|
||||||
focus_indicator.left.win =
|
focus_indicator.left.win =
|
||||||
createWindow(RootWindow(ob_display, ob_screen),
|
createWindow(RootWindow(ob_display, ob_screen),
|
||||||
CWOverrideRedirect | CWBackPixel, &attr);
|
CWOverrideRedirect | CWBackPixel | CWSaveUnder,
|
||||||
|
&attr);
|
||||||
focus_indicator.right.win =
|
focus_indicator.right.win =
|
||||||
createWindow(RootWindow(ob_display, ob_screen),
|
createWindow(RootWindow(ob_display, ob_screen),
|
||||||
CWOverrideRedirect | CWBackPixel, &attr);
|
CWOverrideRedirect | CWBackPixel | CWSaveUnder,
|
||||||
|
&attr);
|
||||||
focus_indicator.bottom.win =
|
focus_indicator.bottom.win =
|
||||||
createWindow(RootWindow(ob_display, ob_screen),
|
createWindow(RootWindow(ob_display, ob_screen),
|
||||||
CWOverrideRedirect | CWBackPixel, &attr);
|
CWOverrideRedirect | CWBackPixel | CWSaveUnder,
|
||||||
|
&attr);
|
||||||
|
|
||||||
stacking_add(INTERNAL_AS_WINDOW(&focus_indicator.top));
|
stacking_add(INTERNAL_AS_WINDOW(&focus_indicator.top));
|
||||||
stacking_add(INTERNAL_AS_WINDOW(&focus_indicator.left));
|
stacking_add(INTERNAL_AS_WINDOW(&focus_indicator.left));
|
||||||
|
|
Loading…
Reference in a new issue