config.sh 1.2 KB

12345678910111213141516171819202122232425262728
  1. #!/bin/bash
  2. # $$$$$$$$\ $$$$$$$$\ $$\ $$\ $$$$$$\ $$\
  3. # \__$$ __|$$ _____|$$$$ | $$ | $$$ __$$\ $$ |
  4. # $$ | $$ | \_$$ | $$$$$$$\ $$$$$$$\ $$$$\ $$ | $$$$$$$\ $$$$$$\
  5. # $$ | $$$$$\ $$ | $$ _____|$$ __$$\ $$\$$\$$ |$$ _____|\_$$ _|
  6. # $$ | $$ __| $$ | $$ / $$ | $$ |$$ \$$$$ |\$$$$$$\ $$ |
  7. # $$ | $$ | $$ | $$ | $$ | $$ |$$ |\$$$ | \____$$\ $$ |$$\
  8. # $$ | $$$$$$$$\ $$$$$$\ \$$$$$$$\ $$ | $$ |\$$$$$$ /$$$$$$$ | \$$$$ |
  9. # \__| \________|\______| \_______|\__| \__| \______/ \_______/ \____/
  10. # Oh my zsh
  11. sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
  12. echo 'oh-my-zsh is installed!'
  13. # Plugins
  14. git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
  15. git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
  16. # logo
  17. mkdir -p ~/.te1ch0st
  18. cp -f te1ch0st.py ~/.te1ch0st/te1ch0st.py
  19. cp -f zshrc ~/.zshrc
  20. apt install python3
  21. apt install python3-pip
  22. pip3 install colorama
  23. echo "ZSH config is installed!"