0ce5a3c77b
- /home/.chezmoiscripts/universal/run_onchange_after_85-remove-shortcuts.tmpl - /home/.chezmoiscripts/universal/run_onchange_after_94-bash-it.tmpl - /home/.chezmoiscripts/universal/run_onchange_after_95-bootstrap-zsh-plugins.tmpl - /home/.chezmoiscripts/universal/run_onchange_after_98-cleanup.tmpl - /home/.chezmoiscripts/universal/run_onchange_after_99-restart-gnome.tmpl - /home/.chezmoiscripts/universal/run_onchange_before_08-install-zx.tmpl - /home/.chezmoiscripts/universal/run_onchange_before_09-node-version.tmpl - /home/.chezmoiscripts/universal/run_onchange_before_10-remove-bloatware.tmpl - /home/.chezmoiscripts/universal/run_onchange_before_11-install-docker.tmpl - /home/.chezmoiscripts/universal/run_onchange_before_91-configure-gpg.tmpl - /home/.chezmoiscripts/universal/run_onchange_after_85-remove-shortcuts.sh.tmpl - /home/.chezmoiscripts/universal/run_onchange_after_94-bash-it.sh.tmpl - /home/.chezmoiscripts/universal/run_onchange_after_95-bootstrap-zsh-plugins.sh.tmpl - /home/.chezmoiscripts/universal/run_onchange_after_98-cleanup.sh.tmpl - /home/.chezmoiscripts/universal/run_onchange_after_99-restart-gnome.sh.tmpl - /home/.chezmoiscripts/universal/run_onchange_before_08-install-zx.sh.tmpl - /home/.chezmoiscripts/universal/run_onchange_before_09-install-go.tmpl - /home/.chezmoiscripts/universal/run_onchange_before_09-node-version.sh.tmpl - /home/.chezmoiscripts/universal/run_onchange_before_10-remove-bloatware.sh.tmpl - /home/.chezmoiscripts/universal/run_onchange_before_11-install-docker.sh.tmpl - /home/.chezmoiscripts/universal/run_onchange_before_91-configure-gpg.sh.tmpl
29 lines
944 B
Bash
29 lines
944 B
Bash
#!/usr/bin/env bash
|
|
# @file Miscellaneous Clean Up
|
|
# @brief Removes certain files that should not be necessary
|
|
# @description
|
|
# This script removes various files in the `HOME` directory that are either no longer necessary
|
|
# or cluttery.
|
|
|
|
### Remove meta sudo file
|
|
if [ -f "$HOME/.sudo_as_admin_successful" ]; then
|
|
rm -f "$HOME/.sudo_as_admin_successful"
|
|
fi
|
|
|
|
### Remove .bash_history file
|
|
# New dotfiles specify this to be kept in the ~/.local folder
|
|
if [ -f "$HOME/.bash_history" ]; then
|
|
rm -f "$HOME/.bash_history"
|
|
fi
|
|
|
|
### Remove wget history file
|
|
# New dotfiles include alias that automatically adds the wget-hsts file in the ~/.local folder
|
|
if [ -f "$HOME/.wget-hsts" ]; then
|
|
rm -f "$HOME/.wget-hsts"
|
|
fi
|
|
|
|
### Remove .wrangler
|
|
# Not sure how this is populating but the proper environment variables appear to be in place and nothing breaks when its removed
|
|
if [ -d "$HOME/.wrangler" ]; then
|
|
rm -rf "$HOME/.wrangler"
|
|
fi
|