Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -540,6 +540,16 @@ function setup_software() {
rm -f ~/.dotfiles_locale_update.pid
fi
fi

# Install Ghostty terminfo if not already present
start_time=$(start_operation "Installing Ghostty terminfo")
if ! infocmp xterm-ghostty > /dev/null 2>&1; then
echo "Installing Ghostty terminfo..."
curl -sL https://raw.githubusercontent.com/zcobol/xterm-ghostty/main/xterm-ghostty | sudo tic -x -
else
echo "✅ Ghostty terminfo already installed"
fi
log_with_timing "Installing Ghostty terminfo" "$start_time"
}

function start_rust_background_installation() {
Expand Down