Further design tweaks

This commit is contained in:
David Heinemeier Hansson
2025-09-13 18:29:58 +02:00
parent 2601311b62
commit 02fbe0f305

View File

@@ -7,15 +7,13 @@ echo_in_style() {
clear clear
tte -i ~/.local/share/omarchy/logo.txt --canvas-width 0 --anchor-text c --frame-rate 920 laseretch tte -i ~/.local/share/omarchy/logo.txt --canvas-width 0 --anchor-text c --frame-rate 920 laseretch
echo echo
echo
echo_in_style "You're done!"
# Display installation time if available # Display installation time if available
if [[ -f $OMARCHY_INSTALL_LOG_FILE ]] && grep -q "Total:" "$OMARCHY_INSTALL_LOG_FILE" 2>/dev/null; then if [[ -f $OMARCHY_INSTALL_LOG_FILE ]] && grep -q "Total:" "$OMARCHY_INSTALL_LOG_FILE" 2>/dev/null; then
echo echo
TOTAL_TIME=$(tail -n 20 "$OMARCHY_INSTALL_LOG_FILE" | grep "^Total:" | sed 's/^Total:[[:space:]]*//') TOTAL_TIME=$(tail -n 20 "$OMARCHY_INSTALL_LOG_FILE" | grep "^Total:" | sed 's/^Total:[[:space:]]*//')
if [ -n "$TOTAL_TIME" ]; then if [ -n "$TOTAL_TIME" ]; then
echo_in_style "Installation completed in $TOTAL_TIME" echo_in_style "Installed in $TOTAL_TIME"
fi fi
fi fi