Skip to content
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

Logs showing in password textbox #638

Open
yagarea opened this issue Jul 6, 2024 · 2 comments
Open

Logs showing in password textbox #638

yagarea opened this issue Jul 6, 2024 · 2 comments
Labels
bug This issue or pull request discusses a bug

Comments

@yagarea
Copy link
Contributor

yagarea commented Jul 6, 2024

Hello, when I start my PC and LY comes up it shows with log in password textbox completely overflowing out of prompt box and sometime out of screen.

Typically it is some info about bluetooth. I am filling this as bug report but if there is a way to prevent this, please let me know.

Thank you for your support

PS: I can provide screenshots if you want to

@AnErrupTion
Copy link
Collaborator

@yagarea You can try switching TTY. With systemd, this would involve modifying the Ly config, as well as the systemd service (due to #623 not being ready yet).

@AnErrupTion AnErrupTion added the bug This issue or pull request discusses a bug label Jul 12, 2024
@lowerclasswarfare
Copy link

Hi guys, I was struggling with this too but I have a workaround (at least on my system).

All I did was create a systemd service unit that calls a shell script that executes "dmesg -n 1".

The service:

[Unit]
Description=Suppress logging to console because that is fucking annoying

[Service]
Type=oneshot
ExecStart=/usr/bin/dmesg-suppress.sh

[Install]
WantedBy=multi-user.target

The script:
#!/bin/sh /usr/bin/dmesg -n 1 && echo "'dmesg -n 1' success!" > /tmp/dmesg-suppress.log

This might not be entirely desirable on all systems, but for me I don't care. Obviously you would have to adapt this if you're running OpenRC or whatever init system you have. Hope it works.

Otherwise, I really like this DM so far. The cmatrix option got me 😆

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug This issue or pull request discusses a bug
Projects
None yet
Development

No branches or pull requests

3 participants