-
Notifications
You must be signed in to change notification settings - Fork 45
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
Is it possible to replace default getty with yaft? #31
Comments
Sorry, currently you cannot use yaft as a getty replacement. You may like this project. |
@uobikiemukot It's sadly... Are you going to work in this direction? or it's out of scope? |
@vkravets At the moment, I think it's not terminal's job. Why do you want to use yaft as a getty replacement? |
The second one... I've try to check if we in tty mode and call yaft, but still nothing found for fish shell... may you can advice something? For yours first suggestion there is kmscon but it's seems it's dead ( but idead for kernel fb console is great... If you are interested in it you can look https://github.com/dvdhrm/kmscon |
You can automatically start yaft after login like this:
# specify host (If you need)
if test "$HOSTNAME" == 'your_hostname'; then
# check we are in linux console
if test "$TERM" == 'linux' -a "$SHLVL" == '1'; then
export FRAMEBUFFER="/dev/fb0"
export YAFT="wall"
yaft
fi
fi I'm not a fish shell user. But maybe like this?:
if test "$HOSTNAME" = 'your_hostname'; and test "$TERM" = 'linux'; and test "$SHLVL" = '1'
set -x FRAMEBUFFER "/dev/fb0"
set -x YAFT "wall"
yaft
end
Thank you for infomation. I know this project :) |
I've trying to replace getty with yaft on ArchLinux and made such systemd service:
/usr/lib/systemd/system/[email protected]
and enable and start it by
And I have such output
Is
VT_CONTROL
atconf.h
resolve this if set it tofalse
?The text was updated successfully, but these errors were encountered: