Remove redundant getdot logic

This commit is contained in:
Sage Vaillancourt 2024-10-10 16:14:57 -04:00
parent 260e3a4749
commit fff303850e
1 changed files with 1 additions and 9 deletions

View File

@ -330,17 +330,9 @@ fi
last_get_file="$HOME/.tmp/.$(whoami)-dotfiles-last-get"
current_date="$(date '+%Y-%m-%d')"
LOGIN_SYNC_DATE="$HOME/.bin/.login-dot-sync"
touch $LOGIN_SYNC_DATE
login_sync_date="$(date '+%D')"
logged_date="$(cat "$LOGIN_SYNC_DATE")"
if [[ "$login_sync_date" == "$logged_date" ]]; then
GETDOT_ARGS="--skip-dconf"
else
RUN_GETDOT="true" GETDOT_ARGS="--skip-dconf"
fi
if [[ "$RUN_GETDOT" == "true" ]] || (test -d "$DOT_DIR" && [[ "$current_date" != "$(cat "$last_get_file")" ]] &> /dev/null); then
echo "$current_date" > "$last_get_file"
date >> "$HOME/.tmp/getdot-log"