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