a lightweight, interval-based utility to combat digital strain through "Ma" (intentional pauses) for the eyes and body.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(ui): overlay always on top on x11 and xwayland

+4
+4
src/overlay/multi_slint.rs
··· 175 175 } 176 176 177 177 winit_win.set_fullscreen(Some(winit::window::Fullscreen::Borderless(handle))); 178 + // On X11 this sets _NET_WM_STATE_ABOVE so other windows 179 + // can't be raised above the overlay after a Super-key switch. 180 + // On Wayland this is a documented no-op in winit 0.30. 181 + winit_win.set_window_level(winit::window::WindowLevel::AlwaysOnTop); 178 182 }) 179 183 .ok(); 180 184 }