I've been trying to figure this out for my xbox media center (xbmc) from a Fedora 15 minimal install. Looks like you just need to install a systemd service that does the autologin.
Here's what I got to autologin user "xbmc". Create this systemd service:
Code:
[Unit]
Description=xinit for %i
[Service]
User=%i
ExecStart=/bin/bash --login -c startx
Restart=always
RestartSec=3
[Install]
WantedBy=multi-user.target
Put the above file in
Code:
/etc/systemd/system/xinit@.service
Add a symbolic link to it from
Code:
/etc/systemd/system/graphical.target.wants/xinit@xbmc.service
You can do something similar by replacing "xbmc" with your user name of choice
Source:
https://bbs.archlinux.org/viewtopic....882191#p882191