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