added uninstall script
This commit is contained in:
parent
88035e6d8e
commit
ecdb365007
14
install.sh
14
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"
|
||||
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"
|
9
uninstall.sh
Executable file
9
uninstall.sh
Executable file
@ -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"
|
Loading…
Reference in New Issue
Block a user