Browse Source

More packages

master
Taylor Bockman 9 years ago
parent
commit
1cd1964e9a
  1. 3
      dotfiles/xinitrc
  2. 5
      installation_instructions
  3. 13
      scripts/sysinstall/install_packages.sh
  4. 5
      xorg-config/20-intel.conf

3
dotfiles/xinitrc

@ -3,4 +3,5 @@
xrdb ~/.Xresources
# zsh ~/.fehbg &
# exec ~/essentials/scripts/sysinit/xmonad_start.sh
exec awesome
# exec awesome
exec i3

5
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

13
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

5
xorg-config/20-intel.conf

@ -0,0 +1,5 @@
Section "Device"
Identifier "Intel Graphics"
Driver "Intel"
Option "AccelMethod" "sna"
EndSection
Loading…
Cancel
Save