Advertisement
Guest User

Untitled

a guest
Jun 18th, 2017
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. x="tema"
  4. menu ()
  5. {
  6. while true $x != "tema"
  7. do
  8. clear
  9. echo "================================================"
  10. echo ""
  11. echo ""
  12. echo "================================================"
  13. echo "1 - Neon"
  14. echo "2 - Comic Book (lista direita)"
  15. echo "3 - Comic Book (lista esquerda)"
  16. echo "4 - Arquivo es_sistems moficado para os temas"
  17. echo "5 - Voltar"
  18. echo "================================================"
  19. echo "Selecione uma opção:"
  20. read x
  21. echo "Opção informada ($x)"
  22. echo "================================================"
  23.  
  24. case "$x" in
  25.  
  26.  
  27. 1)
  28. cd /recalbox/share/system/.emulationstation/themes
  29. wget http://
  30. mv index.html?07l2b69272 Neon.zip
  31.  
  32. unzip Neon.zip
  33. rm Neon.zip
  34. clear;
  35. ;;
  36. 2)
  37. cd /recalbox/share/system/.emulationstation/themes
  38. wget http://
  39. mv index.html?wcph90hupy Comic.Book.LD.zip
  40.  
  41. unzip Comic.Book.LD.zip
  42. rm Comic.Book.LD.zip
  43. clear;
  44. ;;
  45. 3)
  46. cd /recalbox/share/system/.emulationstation/themes
  47. wget http://
  48. mv index.html?y9rj7ntbw0 Comic.Book.LE.zip
  49.  
  50. unzip Comic.Book.LE.zip
  51. rm Comic.Book.LE.zip
  52. clear;
  53. ;;
  54. 4)
  55. cd /recalbox/share/system/.emulationstation
  56. rm es_systems.cfg
  57.  
  58. wget https://
  59. mv index.html?7stbj9gbh8 es.zip
  60.  
  61. unzip es.zip
  62. rm es.zip
  63. clear;
  64. ;;
  65. 5)
  66. exit;
  67. ;;
  68. *)
  69. echo "Opção inexistente!"
  70. sleep 4
  71. esac
  72. done
  73.  
  74. }
  75. menu
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement