dotfiles/update.sh

28 lines
623 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
2023-04-02 22:20:09 -06:00
echo copying 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
2023-01-25 10:47:00 -07:00
cp -r ~/.vim/after ./vim
2022-10-26 12:05:56 -06:00
cp ~/.xinitrc* ./x
cp ~/.Xresources ./x
cp ~/.Xmodmap ./x
2022-12-31 18:36:08 -07:00
cp ~/bin/battery.pl ./x
cp ~/bin/startdwm.sh ./x
2023-04-12 10:02:14 -06:00
cp ~/.config/VSCodium/User/settings.json ./vscode
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
2023-04-02 22:20:09 -06:00
echo pulling submodules...
git submodule update --remote --merge