gtklock icon indicating copy to clipboard operation
gtklock copied to clipboard

Red Screen of death

Open default-vlvo opened this issue 1 year ago • 5 comments

when i try to login from my suspended session from gtklock it would show me the red screen with the cursor and i have to reboot to get my desktop back always i tried workarounds but they dont seem to work either

default-vlvo avatar Dec 30 '24 18:12 default-vlvo

I have the same problem.

ikrivosheev avatar Jan 20 '25 10:01 ikrivosheev

I had the same problem. Try to set scaling to 100%. For me that's swaymsg "output \"DSI-1\" scale 1". Change "DSI-1" to whatever swaymsg -t get_outputs says (assuming your on sway) .

federvieh avatar Jan 21 '25 21:01 federvieh

I'm experiencing the same issue. A workaround is to open another console and launch gtklock on the wayland display from there.

In my case I can trace the issue to when something tries to launch gtklock while another instance is already running. I'm using v4 on void.

xaltsc avatar Feb 17 '25 15:02 xaltsc

Same issue with gtklock-4.0.0_1 on up-to-date voidlinux. I find that disabling the userinfo-module fixes it.

Also (!) upgrading to gtklock-userinfo-module-4.0.1 fixes it!!

bhepple avatar Mar 13 '25 07:03 bhepple

You could create a systemd user service or make a script like this:

#!/usr/bin/env bash

if ! pgrep gtklock &> /dev/null; then
    gtklock
fi

stelcodes avatar Jun 05 '25 18:06 stelcodes