You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

29 lines
530 B

#!/bin/bash
DOT_FILES="
$HOME/.profile \
$HOME/.bashrc \
$HOME/.tmux.conf \
$HOME/.ctags.d \
$HOME/.config/conky/conky.conf"
VIM_FILES="
$HOME/.vim/colors/deus.vim \
$HOME/.vim/after/syntax/cpp.vim \
$HOME/.vimrc"
GDB_FILES="
$HOME/.gdbinit
$HOME/.gdbinit.d"
BASH_SCRIPTS="
$HOME/bin/dev.sh \
$HOME/bin/hide_panel.sh \
$HOME/bin/monitors_off.sh \
$HOME/bin/countdown_timer.sh "
rsync -avP ${DOT_FILES} ./dot
rsync -avP ${VIM_FILES} ./vim
rsync -avP ${GDB_FILES} ./gdb
rsync -avP ${BASH_SCRIPTS} ./bash_scripts