To remove the timeout grub shows during bootup, edit ```/etc/default/grub``` by modfying the ```GRUB_TIMEOUT``` value. Then run ```grub-mkconfig``` as sudo to update your grub configuration. Check out [this](https://bbs.archlinux.org/viewtopic.php?id=169948) post if something goes wrong.
## Getting xserver up.
```bash
# Graphics driver.
yaourt -S xf86-video-vesa
# Xorg
yaourt -S xorg-server
# So you can run startx.
yaourt -S xorg-xinit
# Xorg's default tiling manager
yaourt -S xorg-twm
# Xterm, so we actually get something on screen.
yaourt -S xterm
# Copy a sane default of .xinitrc
cp /etc/X11/xinit/xinitrc ~/.xinitrc
# Get an x display session up.
startx
```
## Auto login and startx
To do auto login [Arch Wiki](https://wiki.archlinux.org/index.php/Automatic_login_to_virtual_console):
[Forum](http://www.linuxquestions.org/questions/linux-networking-3/ourlink-ac600-wireless-usb-adapter-not-working-on-newly-installed-ubuntu-gnome-16-10-a-4175597852/) says to use [this](https://github.com/Grawp/rtl8812au_rtl8821au) but it [doesn't](https://github.com/Grawp/rtl8812au_rtl8821au/pull/46) compile with newest kernel. Instead, [this](https://aur.archlinux.org/packages/rtl8812au-v5-dkms-git/) does and seems to work fine.
The [Wiki](https://wiki.archlinux.org/index.php/VMware/Installing_Arch_as_a_guest) has a decent bit of good info, but if using Antergos then a lot is done for you. Networking and auto window resizing works, but clipboard is still iffy. For that, you must install [some](https://www.reddit.com/r/archlinux/comments/2ipvmw/vmware_copypaste_not_working_openvmtools/) packages via ```yaourt -S gtkmm libxtst``` and restart the machine.