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-11-20 18:41:32 -07:00
|
|
|
cp ~/.config/alacritty.yml ./alacritty/alacritty.yml
|
2022-10-26 12:05:56 -06:00
|
|
|
cp -r ~/.bash ./bash
|
|
|
|
cp ~/.bash_profile ./bash
|
|
|
|
cp ~/.bashrc ./bash
|
2022-11-20 18:41:32 -07:00
|
|
|
cp ~/.config/tmux/tmux.conf ./tmux
|
2022-10-26 12:05:56 -06:00
|
|
|
cp ~/.vimrc ./vim
|
|
|
|
cp ~/.vim/coc-settings.json ./vim
|
|
|
|
cp ~/.xinitrc* ./x
|
|
|
|
cp ~/.Xresources ./x
|
2022-11-20 18:41:32 -07:00
|
|
|
cp ~/.Xmodmap ./x
|
2022-10-26 12:05:56 -06:00
|
|
|
|
2022-11-12 18:20:45 -07:00
|
|
|
# other config files
|
2022-11-21 09:37:00 -07:00
|
|
|
cp ~/.config/dunst/dunstrc ./dunst
|
|
|
|
cp ~/.config/htop/htoprc ./htop
|
2022-11-12 18:20:45 -07:00
|
|
|
|
|
|
|
# update submodules
|
2022-11-02 13:12:48 -06:00
|
|
|
git submodule update --remote --merge
|
|
|
|
|