diff options
Diffstat (limited to 'update.sh')
-rwxr-xr-x | update.sh | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -1,19 +1,20 @@ #!/bin/sh # important config files -cp ~/.alacritty.yml ./alacritty/.alacritty.yml +cp ~/.config/alacritty.yml ./alacritty/alacritty.yml cp -r ~/.bash ./bash cp ~/.bash_profile ./bash cp ~/.bashrc ./bash -cp ~/.tmux.conf ./tmux +cp ~/.config/tmux/tmux.conf ./tmux cp ~/.vimrc ./vim cp ~/.vim/coc-settings.json ./vim cp ~/.xinitrc* ./x cp ~/.Xresources ./x +cp ~/.Xmodmap ./x # other config files -cp -r ~/.config/dunst/ ./config -cp -r ~/.config/htop/ ./config +cp -r ~/.config/dunst/ ./dunst +cp -r ~/.config/htop/ ./htop # update submodules git submodule update --remote --merge |