config_installer.sh 1.3 KB

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