29 lines
805 B
Bash
29 lines
805 B
Bash
#!/bin/bash
|
|
|
|
echo Installing ZSH
|
|
sudo apt install zsh
|
|
chsh -s $(which zsh)
|
|
echo ZSH installed, log out then back in to have it be your default shell
|
|
echo then run this script again
|
|
|
|
echo Installing mise
|
|
curl https://mise.run | sh
|
|
echo "eval \"\$(~/.local/bin/mise activate bash)\"" >> ~/.bashrc
|
|
source ~/.bashrc
|
|
|
|
echo mise installed, restart your terminal then run this script again
|
|
mise doctor
|
|
mise trust
|
|
|
|
sudo apt install kitty
|
|
sudo update-alternatives --config x-terminal-emulator
|
|
echo kitty installed, set it as your default terminal if you wish
|
|
|
|
sudo apt install ranger
|
|
sudo update-alternatives --config xdg-open
|
|
echo ranger installed, set it as your default file manager if you wish
|
|
|
|
sudo apt install mosh
|
|
echo mosh installed
|
|
|
|
echo Finally, run 'task' whenever you are ready for the remaining setup
|