You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I run i3 on Arch and since update from 1.7.0 to 1.8.0 xsecurelock is broken in the way, that a defined screensaver is not showing when the X11 screensaver timer initially expires. The screen is kept on, until XSECURELOCK_BLANK_TIMEOUT expires, but remains otherwise blank. The defined screensaver will show on first key press for the password entry dialog. I have this in i3's config:
I bisected my problem and the causal commit is: 0857969
When I back it out like this
+++ main.c 2023-01-01 19:03:24.586980070 +0100
@@ -1106,7 +1106,7 @@ int main(int argc, char **argv) {
// Figure out the initial Xss saver state. This gets updated by event.
enum WatchChildrenState xss_requested_saver_state = WATCH_CHILDREN_NORMAL;
-#ifdef HAVE_XSCREENSAVER_EXT
+#if 0
if (scrnsaver_event_base != 0) {
XScreenSaverInfo *info = XScreenSaverAllocInfo();
XScreenSaverQueryInfo(display, root_window, info);
the problem is no longer there. The goal is to have the screensaver come up after some time, simultaneously lock the screen, and if I am away for longer, use DPMS to turn off the screen to save energy.
The text was updated successfully, but these errors were encountered:
Hi, happy 2023 :)
I run i3 on Arch and since update from 1.7.0 to 1.8.0 xsecurelock is broken in the way, that a defined screensaver is not showing when the X11 screensaver timer initially expires. The screen is kept on, until XSECURELOCK_BLANK_TIMEOUT expires, but remains otherwise blank. The defined screensaver will show on first key press for the password entry dialog. I have this in i3's config:
I bisected my problem and the causal commit is: 0857969
When I back it out like this
the problem is no longer there. The goal is to have the screensaver come up after some time, simultaneously lock the screen, and if I am away for longer, use DPMS to turn off the screen to save energy.
The text was updated successfully, but these errors were encountered: