dwm and conky configs

This commit is contained in:
Brandon Cornejo 2013-03-29 13:43:21 -05:00
parent 62f5c8eede
commit b8f2505e60
2 changed files with 9 additions and 2 deletions

View File

@ -1,4 +1,8 @@
dotfiles
========
The aptly named
The aptly named.
Vim: Vundle plugin manager, nerdtree, minibufexpl
Tmux: Play nice with vim colors, use screen keybindings
dwm+conky: basic status bar (cpu/temp/mem/SSID/date/battery), and feh for wallpaper

5
install.sh Normal file → Executable file
View File

@ -1,13 +1,16 @@
#!/bin/bash
dir=~/dotfiles
files="vimrc tmux.conf"
files="vimrc tmux.conf conkyrc"
cd $dir
for file in $files; do
ln -s $dir/$file ~/.$file
done
chmod +x dwmstart
ln -s $dir/dwmstart ~/dwmstart
if [ ! -d ~/.vim/bundle/vundle ]; then
git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
vim +BundleInstall +qall