-
Notifications
You must be signed in to change notification settings - Fork 200
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Swaylock red screens or doesn't work with udev rules #323
Comments
Just for context my 99-usb-remove.rules in /etc/udev/rules.d/ is
|
I don't have any guesses as to why exactly the correct password is not working, but the red screen mode is something that Sway does when the lockscreen crashes, exits without unlocking, or makes a Wayland protocol error. Running with the |
Also seeing this issue on NixOS and the same swaylock version, running with a similar script. The relevant configuration is extraRules = ''
ACTION=="remove",\
ENV{ID_BUS}=="usb",\
ENV{ID_MODEL_ID}=="0407",\
ENV{ID_VENDOR_ID}=="1050",\
ENV{ID_VENDOR}=="Yubico",\
RUN+="${pkgs.coreutils}/bin/env WAYLAND_DISPLAY=wayland-1 XDG_RUNTIME_DIR=/run/user/1000 ${pkgs.swaylock}/bin/swaylock -c 00000000 -d"
''; might dig into this some more with the debug flag once I figure out where everything is getting logged. |
Red screen still means "lockscreen crashed". The udev rule should cause swaylock to run as your user, not as root. One way to do that would be to write this as a small monitoring script (e.g., using python's udev package) which can be started from your sway config, rather than as a udev rule. |
When using a udev rule that triggers as I remove my yubikey I made it run a script that will trigger swaylock.
Here is that script:
When I run that as root everything is fine and swaylock just works as normal. However when udev rules trigger that script sure swaylock opens but I can't get passed the lock screen the correct password does not work. Now if you had -f along with -c you will get another issue where after you type and press enter swaylock enters a red screen mode.
I am using swaylock 1.7.2 and I am on gentoo with openrc but I think this is reproducible in other distributions as well.
I am not sure what the root of the problem is but this would be a great if it does work.
The text was updated successfully, but these errors were encountered: