Void Autologin
Make the autologin service:
1cp -R /etc/sv/agetty-tty1 /etc/sv/agetty-autologin-tty1
1if [ -x /sbin/agetty -o -x /bin/agetty ]; then
2 # util-linux specific settings
3 if [ "${tty}" = "tty1" ]; then
4 GETTY_ARGS="--noclear"
5 fi
6fi
7
8GETTY_ARGS="--autologin [ your username ] --noclear"
9BAUD_RATE=38400
10TERM_NAME=linux
Then stick this at the end of the bashrc:
1# autologin on tty1
2 if [ -z "$DISPLAY" ] && [ "$(fgconsole)" -eq 1 ]; then
3 exec startx
4 fi