Created
January 13, 2021 14:27
-
-
Save NNBnh/2c481cf8ec4630499b2c17b95aa09f14 to your computer and use it in GitHub Desktop.
Install Starship prompt quickly
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Values | |
TMPDIR="${TMPDIR:-/tmp}" | |
# Start | |
curl -fsSL https://starship.rs/install.sh --create-dirs --output "$TMPDIR/starship-installer" | |
chmod +x "$TMPDIR/starship-installer" | |
eval "$TMPDIR/starship-installer --yes --bin-dir '$HOME/.local/bin'" | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment