From ecdb365007b70780fc8e22df563321702538609c Mon Sep 17 00:00:00 2001 From: "Eric D. Rohler" Date: Sat, 27 Apr 2019 17:19:35 -0400 Subject: [PATCH] added uninstall script --- install.sh | 14 +++++++------- uninstall.sh | 9 +++++++++ 2 files changed, 16 insertions(+), 7 deletions(-) create mode 100755 uninstall.sh diff --git a/install.sh b/install.sh index e85de8b..3e9bede 100755 --- a/install.sh +++ b/install.sh @@ -7,10 +7,10 @@ # done -ln -s "$(pwd)/bashrc" "$HOME/.bashrc" -ln -s "$HOME/.bashrc" "$HOME/.bash_profile" -ln -s "$(pwd)/tmux.conf""$HOME/.tmux.conf" -ln -s "$(pwd)/vimrc" "$HOME/.vimrc" -ln -s "$HOME/.vimrc" "$HOME/.config/nvim/init.vim" -ln -s "$(pwd)/gtk.css" "$HOME/.config/gtk-3.0/gtk.css" -ln -s "$(pwd)/config.conf" "$HOME/.config/neofetch/config.conf" \ No newline at end of file +ln -s "$(pwd)/bashrc" "$HOME/.bashrc" +ln -s "$HOME/.bashrc" "$HOME/.bash_profile" +ln -s "$(pwd)/tmux.conf" "$HOME/.tmux.conf" +ln -s "$(pwd)/vimrc" "$HOME/.vimrc" +ln -s "$HOME/.vimrc" "$HOME/.config/nvim/init.vim" +ln -s "$(pwd)/gtk.css" "$HOME/.config/gtk-3.0/gtk.css" +ln -s "$(pwd)/config.conf" "$HOME/.config/neofetch/config.conf" \ No newline at end of file diff --git a/uninstall.sh b/uninstall.sh new file mode 100755 index 0000000..a8951ec --- /dev/null +++ b/uninstall.sh @@ -0,0 +1,9 @@ +#!/usr/bin/bash + +rm "$HOME/.bashrc" +rm "$HOME/.bash_profile" +rm "$HOME/.tmux.conf" +rm "$HOME/.vimrc" +rm "$HOME/.config/nvim/init.vim" +rm "$HOME/.config/gtk-3.0/gtk.css" +rm "$HOME/.config/neofetch/config.conf" \ No newline at end of file