15 lines
318 B
Markdown
15 lines
318 B
Markdown
|
|
|
|
``` bash
|
|
sudo apt install -y zsh
|
|
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
|
|
sh -c "$(curl -fsSL https://public.veypi.com/install_zsh.sh)"
|
|
|
|
echo 'PROMPT=%m\ $PROMPT' >> ~/.zshrc
|
|
sed -i '1i\DISABLE_AUTO_UPDATE="true"' ~/.zshrc
|
|
|
|
|
|
chsh -s /bin/zsh
|
|
sudo reboot -h now
|
|
```
|