-
Notifications
You must be signed in to change notification settings - Fork 0
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
feat(greetd): use greetd instead of sddm #26
Conversation
After adding When looking into the logs I see:
Some further investigation shows me that the |
I read that the Since we will need to add |
Seems like using
I am yet to find out exactly what 'file or directory' it is referring to. Note: the black screen in question doesn't allow you to switch tty so reboot seems like the only option to get out of the situation. |
Are we running SELinux because that is known to block greetd? |
Two ways to go here as of now:
I have tested the workaround locally (see below) and it solves our problem. It also appears consistent across boots, which is nice! The workaround: sudo cp /usr/bin/greetd /usr/local/bin/greetd
sudo mount --bind /usr/local/bin/greetd /usr/bin/greetd
sudo semanage fcontext -a -t xdm_exec_t /usr/bin/greetd
sudo restorecon /usr/bin/greetd It seems that the reason it is consistent (although the mount isn't) is because the new binary that was created just so happens to live in a directory that appears earlier in the systemd users PATH. |
No description provided.