remove line

This commit is contained in:
Tobias Powalowski 2023-07-14 12:38:07 +02:00
parent 7789223972
commit 1b1a7fd7ea

View file

@ -129,12 +129,12 @@ _dotimeset() {
timedatectl set-time "${_DATETIME}" timedatectl set-time "${_DATETIME}"
_SET_TIME="1" _SET_TIME="1"
fi fi
if _dialog --cr-wrap --defaultno --yesno "Your current time and date is:\n$(${_DATE_PROGRAM})\n\nDo you want to change it?" 0 0; then if _dialog --cr-wrap --title " Confirmation Dialog " --yesno "$(${_DATE_PROGRAM})" 0 0; then
_SET_TIME=""
else
_dialog --infobox "Clock configuration completed successfully." 3 50 _dialog --infobox "Clock configuration completed successfully." 3 50
sleep 3 sleep 3
return 0 return 0
else
_SET_TIME=""
fi fi
done done
} }