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.
38 lines
661 B
38 lines
661 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" |
|
|
|
SCRIPTS=" |
|
$HOME/bin/countdown_timer.sh \ |
|
$HOME/bin/dev.sh \ |
|
$HOME/bin/get_bat.sh \ |
|
$HOME/bin/hide_panel.sh \ |
|
$HOME/bin/iommu.sh \ |
|
$HOME/bin/monitors_off.sh \ |
|
$HOME/bin/wmresize.sh \ |
|
" |
|
|
|
rsync -avP ${DOT_FILES} ./dot |
|
rsync -avP ${VIM_FILES} ./vim |
|
rsync -avP ${GDB_FILES} ./gdb |
|
rsync -avP ${SCRIPTS} ./bin |
|
|
|
APP_CONFIGS=" |
|
$HOME/.config/firejail" |
|
|
|
rsync -avP ${APP_CONFIGS} .config/ |
|
|
|
|