summaryrefslogtreecommitdiff
path: root/modules/40-neofetch
diff options
context:
space:
mode:
Diffstat (limited to 'modules/40-neofetch')
-rw-r--r--modules/40-neofetch/install.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/40-neofetch/install.sh b/modules/40-neofetch/install.sh
index 65a90d3..c432a71 100644
--- a/modules/40-neofetch/install.sh
+++ b/modules/40-neofetch/install.sh
@@ -12,10 +12,11 @@ function preinstall() {
function install() {
# backup old file if it exists and we haven't backed it up before
if [[ -f "$HOME/.config/neofetch/config.conf" ]] && ! [[ -f "$HOME/.config/neofetch/config.conf.bak" ]] && ! [[ -f "$_scriptdir/.firstrun" ]]; then
- echo "making backup"
+ log verbose "making backup"
cp "$HOME/.config/neofetch/config.conf" "$HOME/.config/neofetch/config.conf.bak"
touch "$_scriptdir/.firstrun"
fi
+ log info "linking neofetch config"
ln -f "$_scriptdir/config.conf" "$HOME/.config/neofetch/config.conf"
}