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.
28 lines
506 B
28 lines
506 B
#!/bin/bash |
|
|
|
DOT_FILES=" |
|
$HOME/.profile \ |
|
$HOME/.bashrc \ |
|
$HOME/.tmux.conf \ |
|
$HOME/.ctags \ |
|
$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/hide_panel.sh \ |
|
$HOME/bin/tmux_start.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 |
|
|
|
|