diff --git a/dotfiles/xinitrc b/dotfiles/xinitrc index 647946e..21ef86a 100644 --- a/dotfiles/xinitrc +++ b/dotfiles/xinitrc @@ -3,4 +3,5 @@ xrdb ~/.Xresources # zsh ~/.fehbg & # exec ~/essentials/scripts/sysinit/xmonad_start.sh -exec awesome +# exec awesome +exec i3 diff --git a/installation_instructions b/installation_instructions index 9ccfe40..7ed2633 100644 --- a/installation_instructions +++ b/installation_instructions @@ -155,6 +155,11 @@ VBoxClient-all ### Editor (gvim for clipboard support, use console vim provided) pacman -S gvim +### Check your particular graphics driver wiki and install and configure +### Xorg for it, as well as configure the correct options for modprobe +### and other files. + + ### Window management ### ALTERANTIVE (Awesome WM) ### pacman -S awesome vicious diff --git a/scripts/sysinstall/install_packages.sh b/scripts/sysinstall/install_packages.sh old mode 100644 new mode 100755 index 1aa5736..89c5cf4 --- a/scripts/sysinstall/install_packages.sh +++ b/scripts/sysinstall/install_packages.sh @@ -23,12 +23,23 @@ function install_yaourt { sudo pacman -U yaourt*.pkg.tar.xz } +# Make sure system is up to date +sudo pacman -Syu + + # Install yaourt before doing anything else install_yaourt # Add AUR packages to install here -packages=("wget", "emacs", "gvim", "openssh", "steam", "zsh", "zsh-completions", "tmux", "i3") +packages=("wget", "emacs", "gvim", "openssh", "steam", "zsh", "zsh-completions", "tmux", + "xf86-video-fbdev", "xf86-video-intel", "xf86-video-vesa", "xorg", "xorg-xinit", + "dmenu", "ttf-inconsolata", "i3", "google-chrome", "clojure", "leiningen", + "lieningen-completions", "npm") + +# Reload the font cache +fc-cache + # Execute the array of commands for (( i=0; i<${#packages[@]}; i++ )); do diff --git a/xorg-config/20-intel.conf b/xorg-config/20-intel.conf new file mode 100644 index 0000000..ff15148 --- /dev/null +++ b/xorg-config/20-intel.conf @@ -0,0 +1,5 @@ +Section "Device" + Identifier "Intel Graphics" + Driver "Intel" + Option "AccelMethod" "sna" +EndSection \ No newline at end of file