dotfiles/update.sh

22 lines
443 B
Bash
Raw Normal View History

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
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
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
cp ~/.Xmodmap ./x
2022-10-26 12:05:56 -06:00
2022-11-12 18:20:45 -07:00
# other config files
cp -r ~/.config/dunst/ ./dunst
cp -r ~/.config/htop/ ./htop
2022-11-12 18:20:45 -07:00
# update submodules
git submodule update --remote --merge