You are not logged in.
Hello All,
is there a way to get NumLock activated before Login?
So it is ready to use for Login Credentials?
Offline
Check your bios options, sometimes there is an option to set numlock at boot.
Offline
Try adding this to /etc/rc.local (needs the kbd package):
initty="/dev/tty[1-6]"
for tty in $initty; do
/usr/bin/setleds -D +num < "$tty"
done
EDIT: that's for console (TTY) screens.
If you mean for a display manager login see https://wiki.archlinux.org/title/LightD … by_default (for LightDM, other display managers will have similar options for startup scripts and commands).
Last edited by Head_on_a_Stick (2021-12-25 19:11:00)
Brianna Ghey — Rest In Power
Offline
Thank you for the link.
Installed numlockx and works like a charme.
Offline
Try adding this to /etc/rc.local (needs the kbd package):
initty="/dev/tty[1-6]" for tty in $initty; do /usr/bin/setleds -D +num < "$tty" done
It work like a charm ! Thanks HOAS.
Linux noob, plz be kind
Offline