diff options
author | hitlerrip <git@hitler.rip> | 2025-08-05 21:29:47 +0200 |
---|---|---|
committer | hitlerrip <git@hitler.rip> | 2025-08-05 21:29:47 +0200 |
commit | 517814c347a76478faf763efbd9be3fccb20004f (patch) | |
tree | 1e00f3982d444092b9170372365d71f6b80fafc3 | |
parent | f1a3779b83ff28d5d2f963bc0c701b69ad8cb33b (diff) | |
download | website-517814c347a76478faf763efbd9be3fccb20004f.tar.gz website-517814c347a76478faf763efbd9be3fccb20004f.tar.bz2 website-517814c347a76478faf763efbd9be3fccb20004f.zip |
fix starship
creates ~/.config/ (which does not exist by default) and actually
installs the program
-rwxr-xr-x | run.sh | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -280,6 +280,8 @@ alias .....="cd ../../../.." alias bc="bc -q" alias c="rsync -P" EOF +curl -sS https://starship.rs/install.sh | sh +mkdir -p ~/.config/ curl -L https://starship.rs/config-schema.json --output ~/.config/starship-schema.json tee ~/.config/starship.toml << EOF "\$schema" = '~/.config/starship-schema.json' |