Autologin startx
sudo pacman -S xorg-xinit
nano ~/.xinitrc
####### start autologin
if [ -d /etc/X11/xinit/xinitrc.d ] ; then
for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
[ -x "$f" ] && . "$f"
done
unset f
fi
##########
####### Window Manager of your choice
####### exec gnome-session
exec startkde
####### exec startxfce4
####### exec awesome
####### exec openbox-sessionnano ~/.bash_profile
[[ -f ~/.bashrc ]] && . ~/.bashrc
[[ -z $DISPLAY && $XDG_VTNR -eq NomerVirtConsole ]] && exec startxsudo systemctl edit getty@ttyNomerVirtConsole (eg: sudo systemctl edit getty@tty1)
[Service]
ExecStart=
ExecStart=-/usr/bin/agetty --autologin YouUsername --noclear %I $TERMFix Dbus ***
nano ~/.xinitrc
####### Dbus fix .xinitrc
if [ -z "$DBUS_SESSION_BUS_ADDRESS" ]; then
eval "$(dbus-launch --sh-syntax --exit-with-session)"
fisudo reboot