20 lines
410 B
Bash
Executable file
20 lines
410 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# important config files
|
|
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
|
|
|
|
# other config files
|
|
cp -r ~/.config/dunst/ ./config
|
|
cp -r ~/.config/htop/ ./config
|
|
|
|
# update submodules
|
|
git submodule update --remote --merge
|
|
|