From b8f2505e609eadf03f80407c9e83a11464cf3a98 Mon Sep 17 00:00:00 2001 From: Brandon Cornejo Date: Fri, 29 Mar 2013 13:43:21 -0500 Subject: [PATCH] dwm and conky configs --- README.md | 6 +++++- install.sh | 5 ++++- 2 files changed, 9 insertions(+), 2 deletions(-) mode change 100644 => 100755 install.sh diff --git a/README.md b/README.md index a2576be..3840cc7 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,8 @@ dotfiles ======== -The aptly named \ No newline at end of file +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 diff --git a/install.sh b/install.sh old mode 100644 new mode 100755 index 3764140..76f5468 --- a/install.sh +++ b/install.sh @@ -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