zepek_al

Personalizar kali Linux

Nov 4th, 2017
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.97 KB | None | 0 0
  1. #!/bin/bash
  2. green="\033[1;32m"
  3. th3m3s(){
  4. cat<<!
  5. ################################################
  6. #  _____ _          ___       ____             #
  7. # |_   _| |__   ___|_ _|_ __ / ___|  ___  ___  #
  8. #   | | | '_ \ / _ \| || '_ \\___ \ / _ \/ __| #
  9. #   | | | | | |  __/| || | | |___) |  __/ (__  #
  10. #   |_| |_| |_|\___|___|_| |_|____/ \___|\___| #
  11. #                                              #
  12. ################################################
  13. !
  14. echo -e $green"Personaliza Kali ? (Sim/Não)";
  15. echo -e ":\c";
  16. read resposta
  17. if [ $resposta = "Sim" ]; then
  18.  
  19. echo -e $green"Instalando";
  20.  
  21. apt-get install gnome-tweak-tool
  22. echo -e $green"Baixando Themas";
  23. wget https://dl.dropboxusercontent.com/s/ywsdpguffp35pyc/numix___gtk3_theme_by_satya164-d5ygul6.zip
  24. wget https://dl.dropboxusercontent.com/s/oaiwr9pkvstadn6/elementary.zip
  25.  
  26. for i in $(ls *.zip)
  27. do
  28. unzip $i
  29. done
  30.  
  31. mv  Numix/  /usr/share/themes
  32. mv elementary/ /usr/share/icons
  33.  
  34. gnome-tweak-tool
  35.  
  36. fi
  37. }
  38. th3m3s;
Add Comment
Please, Sign In to add comment