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...
|
2024-04-09 18:29:39 -06:00
|
|
|
cp ~/.config/alacritty.toml ./alacritty/alacritty.toml
|
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
|
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
|
2022-11-20 18:41:32 -07:00
|
|
|
cp ~/.Xmodmap ./x
|
2023-09-13 21:36:43 -06:00
|
|
|
cp ~/bin/spawn-alacritty ./x
|
2023-05-31 22:46:32 -06:00
|
|
|
cp ~/bin/quitconf ./x
|
2023-09-03 00:13:21 -06:00
|
|
|
cp ~/bin/battery ./x
|
|
|
|
cp ~/bin/startdwm ./x
|
2023-10-13 16:15:12 -06:00
|
|
|
cp ~/.config/xmobar/xmobar.hs ./xmobar
|
|
|
|
cp ~/.config/xmonad/xmonad.hs ./xmonad
|
2023-04-12 10:02:14 -06:00
|
|
|
cp ~/.config/VSCodium/User/settings.json ./vscode
|
2024-04-09 18:29:39 -06:00
|
|
|
cp ~/.profile ./sh
|
|
|
|
cp ~/.bash_profile ./sh/bash
|
|
|
|
cp ~/.bashrc ./sh/bash
|
2022-11-21 09:37:00 -07:00
|
|
|
cp ~/.config/dunst/dunstrc ./dunst
|
|
|
|
cp ~/.config/htop/htoprc ./htop
|
2024-04-09 18:29:39 -06:00
|
|
|
cp ~/.config/doom/* ./doom
|
2022-11-12 18:20:45 -07:00
|
|
|
|
|
|
|
# update submodules
|
2023-04-02 22:20:09 -06:00
|
|
|
echo pulling submodules...
|
2022-11-02 13:12:48 -06:00
|
|
|
git submodule update --remote --merge
|
|
|
|
|