#!/bin/bash DOTFILES=" $HOME/.bashrc \ $HOME/.ctags.d \ $HOME/.gdbinit \ $HOME/.gdbinit.d \ $HOME/.tmux.conf \ $HOME/.vim/after/syntax/cpp.vim \ $HOME/.vimrc \ " rsync -avP ${DOTFILES} ./ APP_CONFIGS=" $HOME/.config/firejail \ $HOME/.config/conky " rsync -avP ${APP_CONFIGS} .config/ 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 ${SCRIPTS} ./bin