Guest User

Untitled

a guest
May 21st, 2018
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. #!/bin/bash
  2. #
  3. # Autor: VitorLeSantos <github.com/VitorLeSantos>
  4. # Descrição: Este script instala algumas alternativas livres para as fontes Microsoft.
  5. #
  6.  
  7. clear
  8. echo "
  9. Instalando as seguintes
  10. fonts
  11. +---------------------------+
  12. | fonts-arkpandora |
  13. | fonts-liberation |
  14. | fonts-liberation2 |
  15. | fonts-linuxlibertine |
  16. | font-croscore |
  17. | ttf-bitstram-vera |
  18. | fonts-dejavu |
  19. | font-tlwg-norasi-ttf |
  20. | font-tlwg-loma-ttf |
  21. | fonts-crosextra-carlito |
  22. +---------------------------+
  23.  
  24. ";
  25. sleep 1
  26. sudo apt install \
  27. fonts-linuxlibertine \
  28. fonts-croscore \
  29. fonts-arkpandora \
  30. fonts-liberation \
  31. fonts-liberation2 \
  32. fonts-linuxlibertine \
  33. fonts-taml-tscu \
  34. ttf-bitstream-vera \
  35. fonts-dejavu \
  36. fonts-tlwg-norasi-ttf \
  37. fonts-tlwg-loma-ttf \
  38. fonts-crosextra-carlito \
  39. --no-install-recommends -y
Add Comment
Please, Sign In to add comment