2022-05-19 14:10:12 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
PATH_PREFIX=`pwd`
|
|
|
|
|
|
|
|
rm -r ~/.config/htop
|
|
|
|
ln -s $PATH_PREFIX/config/htop ~/.config/htop
|
|
|
|
|
|
|
|
rm ~/.gitconfig
|
|
|
|
ln -s $PATH_PREFIX/gitconfig ~/.gitconfig
|
|
|
|
|
|
|
|
rm ~/.nanorc
|
|
|
|
ln -s $PATH_PREFIX/nanorc ~/.nanorc
|
|
|
|
|
|
|
|
rm ~/.p10k.zsh
|
|
|
|
ln -s $PATH_PREFIX/p10k.zsh ~/.p10k.zsh
|
|
|
|
|
|
|
|
rm ~/.tmux.conf
|
|
|
|
ln -s $PATH_PREFIX/tmux.conf ~/.tmux.conf
|
|
|
|
|
|
|
|
rm ~/.zshrc
|
|
|
|
ln -s $PATH_PREFIX/zshrc ~/.zshrc
|
|
|
|
|
2022-05-19 14:16:09 +00:00
|
|
|
echo "install 'exa fd bat tmux htop nano most emacs zsh' if needed"
|
2022-05-19 14:10:12 +00:00
|
|
|
echo "copy restic.sh if desired/needed"
|