pacman -S xorg-server xorg-xinit xorg-apps pacman -S awesome xterm

  1. config startx and xinit

cp /etc/X11/xinit/xinitrc ~/.xinitrc

delete last lines add

  1. disable bell

xet -b

  1. Launch awesome

exec awesome

  1. startx :) (xinit for root)

startx

  1. autostart startx

for bash add to ~/.bash_profile for zsh add to ~/.zprofile

if systemctl -q is-active graphical.target && [[ ! \(DISPLAY && \)XDG_VTNR -eq 1 ]]; then exec startx fi

  1. tearing intel

/etc/X11/xorg.conf.d/20-intel.conf

Section "Device" Identifier "Intel Graphics" Driver "intel"

Option "TearFree" "true" EndSection