2022-11-12 18:20:45 -07:00
|
|
|
#!/bin/sh
|
2022-10-26 12:05:56 -06:00
|
|
|
|
2022-11-12 18:20:45 -07:00
|
|
|
# important config files
|
2022-10-26 12:05:56 -06:00
|
|
|
cp ~/.alacritty.yml ./alacritty/.alacritty.yml
|
|
|
|
cp -r ~/.bash ./bash
|
|
|
|
cp ~/.bash_profile ./bash
|
|
|
|
cp ~/.bashrc ./bash
|
|
|
|
cp ~/.tmux.conf ./tmux
|
|
|
|
cp ~/.vimrc ./vim
|
|
|
|
cp ~/.vim/coc-settings.json ./vim
|
|
|
|
cp ~/.xinitrc* ./x
|
|
|
|
cp ~/.Xresources ./x
|
|
|
|
|
2022-11-12 18:20:45 -07:00
|
|
|
# other config files
|
|
|
|
cp -r ~/.config/dunst/ ./config
|
|
|
|
cp -r ~/.config/htop/ ./config
|
|
|
|
|
|
|
|
# update submodules
|
2022-11-02 13:12:48 -06:00
|
|
|
git submodule update --remote --merge
|
|
|
|
|