diff --git a/.config/shell/updates b/.config/shell/updates index e369dab..82ee678 100755 --- a/.config/shell/updates +++ b/.config/shell/updates @@ -5,5 +5,9 @@ # [3-18-22] Move Powerlevel 10k config file out of home directory if [ -f ~/.p10k.zsh ] && ! [ -f "$P10K_CONFIG_LOCATION" ]; then - mv ~/.p10k.zsh "$P10K_CONFIG_LOCATION" + if mv ~/.p10k.zsh "$P10K_CONFIG_LOCATION"; then + echo "Update: Powerlevel 10k config file moved to $P10K_CONFIG_LOCATION" + else + echo "Update: Error: failed to move Powerlevel 10k config file to $P10K_CONFIG_LOCATION" + fi fi