Re: Configuring bash in tty to show cursor and also set default foreground colour.
Reply #12 –
So, I booted a live iso of the latest LXQT install media of artix and its login has a blinking cursor, now I'm trying to figure out how it has that but mine doesn't for context, I always installed mine through cli and not through an installer.
Editd and revelations,
So, I took a look at the tty configs between mine and artix live iso's and I found this:
This is mine[tty1 in /etc/dinit.d/]
type = process
command = /usr/lib/dinit/agetty-default tty1
restart = true
depends-on = login.target
termsignal = HUP
smooth-recovery = true
inittab-id = 1
inittab-line = tty1
And this is artix iso's:
type = process
command = /sbin/agetty --noclear tty1 38400 linux
restart = true
depends-on = loginready
termsignal = HUP
smooth-recovery = true
inittab-id = 1
inittab-line = tty1
So I copied the artix live iso tty1 script to my own, it didn't work.