From a6f59831fcc61a2dc8f8179174937d4c613a1390 Mon Sep 17 00:00:00 2001 From: KemoNine Date: Thu, 19 May 2022 10:10:12 -0400 Subject: [PATCH] add basic setup script --- _setup.sh | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 _setup.sh diff --git a/_setup.sh b/_setup.sh new file mode 100755 index 0000000..2eb34b0 --- /dev/null +++ b/_setup.sh @@ -0,0 +1,24 @@ +#!/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 + +echo "install 'exa fd bat tmux htop nano emacs zsh' if needed" +echo "copy restic.sh if desired/needed"