From 483077bb97a3a753d3b0695616c826605c08c6d5 Mon Sep 17 00:00:00 2001 From: Jacob Schantli Date: Sat, 28 Feb 2026 12:20:13 -0800 Subject: [PATCH] Update postinstall.sh --- postinstall.sh | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/postinstall.sh b/postinstall.sh index dece198..c8b24eb 100644 --- a/postinstall.sh +++ b/postinstall.sh @@ -113,5 +113,20 @@ keepcache=True" echo "CachyOS addons complete." sleep 3 + echo "Installing LinuxToys" - curl -fsSL https://linux.toys/install.sh | bash \ No newline at end of file + curl -fsSL https://linux.toys/install.sh | bash + + echo "Installing Starship" + sudo dnf copr enable atim/starship + sudo dnf install starship -y + sleep 1 + text_to_append_bash="eval "$(starship init bash)" + keepcache=True" + + #File path + file_path_bash="~/.bashrc" + + # Append the text to the end of the file + echo "$text_to_append_bash" | sudo tee -a "$file_path_bash" + starship preset gruvbox-rainbow -o ~/.config/starship.toml