diff options
author | Urbain Vaes <urbain@vaes.uk> | 2014-11-06 13:38:25 +0000 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2014-11-06 13:38:25 +0000 |
commit | c795f8abb475ddc70255b9b6f93c3aeec3950667 (patch) | |
tree | 5ead7a0ce3397221c4e92d4dc863a78e5954ffa4 /make | |
parent | f36c1e31da4fb0f46c6b40537ef4b2225df94a43 (diff) |
minor changes
Diffstat (limited to 'make')
-rwxr-xr-x | make | 19 |
1 files changed, 8 insertions, 11 deletions
@@ -4,7 +4,7 @@ dir=~/dotfiles olddir=~/dotfiles_old # Files to sync -files="vim mutt vifm bashrc zshrc xmodmap mynotes tmux.conf zathurarc offlineimaprc inputrc crontab" +files="vim mutt vifm bashrc zshrc xmodmap mynotes tmux.conf zathurarc offlineimaprc inputrc crontab krystle" rm -rf $olddir mkdir -p $olddir @@ -16,22 +16,19 @@ for file in $files; do ln -s $dir/$file ~/.$file done -# Fetchmailrc (protect sensitive information) -# mv ~/.fetchmailrc $olddir -# cp $dir/.fetchmailrc ~ -# vim ~/.fetchmailrc -# read password -# sed -i 's/xx_change_me_xx/'$password'/g' ~/.fetchmailrc - # SSMTP config echo ssmtp.conf sudo mv /etc/ssmtp/ssmtp.conf $olddir sudo ln -s $dir/ssmtp.conf /etc/ssmtp/ -# Permissions +# Solarized cd -sudo chmod 600 ~/.fetchmailrc -sudo chmod 600 $dir/.mailfilter +rm -rf .solarized +mkdir .solarized +cd .solarized +git clone https://github.com/altercation/mutt-colors-solarized +git clone https://github.com/Anthony25/gnome-terminal-colors-solarized/ +git clone https://github.com/seebi/dircolors-solarized sudo rm -rf .vim/bundle mkdir .vim/bundle |