forked from snxraven/autoinstallers
34 lines
1.1 KiB
Bash
34 lines
1.1 KiB
Bash
#!/bin/bash
|
|
echo "Welcome to the Starship CLI Installer for Discord-Linux!"
|
|
echo "We will install and configure Starship for you automatically."
|
|
|
|
sleep 2
|
|
|
|
wget -q -O /var/tools/starship_installer.sh https://starship.rs/install.sh
|
|
|
|
chmod +x /var/tools/starship_installer.sh
|
|
|
|
sh /var/tools/starship_installer.sh -f >/dev/null 2>&1
|
|
|
|
#/bin/bash
|
|
# install DroidSansMono Nerd Font --> u can choose another at: https://www.nerdfonts.com/font-downloads
|
|
apt install zip unzip -y
|
|
echo "[-] Download fonts [-]"
|
|
echo "https://github.com/ryanoasis/nerd-fonts/releases/download/v2.1.0/FiraCode.zip"
|
|
wget -q https://github.com/ryanoasis/nerd-fonts/releases/download/v2.1.0/FiraCode.zip
|
|
mkdir ~/.fonts -vp
|
|
unzip -ao FiraCode.zip -d ~/.fonts
|
|
rm -vf FiraCode.zip
|
|
sudo apt install fontconfig -y
|
|
fc-cache -fv
|
|
|
|
echo "downloading preconfigured style"
|
|
mkdir -vp ~/.config
|
|
wget -q -O ~/.config/starship.toml https://paste.discord-linux.com/89021226408983
|
|
echo "done!"
|
|
|
|
echo 'eval "$(starship init bash)"' >> ~/.bashrc
|
|
echo "!!!!!CONFIGURATION COMPLETE!!!!!!!!!!"
|
|
echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
|
|
echo "Please close the SSH Session and reconnect! "
|