A bin folder, holding helpfull scripts and commands
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

yay-extend-endeavour 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. #!/bin/sh
  2. #
  3. #
  4. # Additional Packages
  5. COMMON="
  6. joe htop
  7. rsync
  8. owncloud-client
  9. keepass xsel
  10. sshfs curlftpfs
  11. lib32-glibc brother-mfc-5890cn canon-pixma-ts5055-complete
  12. tlp tlp-rdw
  13. "
  14. MULTIMEDIA="
  15. rhythmbox audacious
  16. kodi kodi-addon-pvr-hts
  17. shotwell
  18. photocollage
  19. pro-audio pulseaudio-jack realtime-privileges soundfont-fluid
  20. bluez bluez-utils pulseaudio-bluetooth bluedevil
  21. "
  22. TOOLS="
  23. kmail korganizer kaddressbook kontact
  24. freemind
  25. libreoffice-fresh
  26. texlive-bin texlive-latexextra
  27. kile
  28. gimp
  29. librecad
  30. xfig
  31. docker docker-compose
  32. kicad kicad-library kicad-library-3d
  33. openscad
  34. freecad
  35. "
  36. PROGRAMMING="
  37. python-pip
  38. python-virtualenv
  39. python2
  40. meld
  41. gcc gdb
  42. arduino picocom
  43. "
  44. ALL=$COMMON\ $MULTIMEDIA\ $TOOLS\ $PROGRAMMING
  45. echo The followin packages and their required depending packages will be installed:
  46. echo ------------------------------------------------------------------------------
  47. echo $ALL
  48. echo ------------------------------------------------------------------------------
  49. read -r -p "Are you sure? [y/N] " response
  50. echo ------------------------------------------------------------------------------
  51. case "$response" in
  52. [yY][eE][sS]|[yY])
  53. yay -S --needed $ALL
  54. echo Enable bluetooth by: sudo systemctl enable --now bluetooth
  55. ;;
  56. *)
  57. echo Installation aborted!
  58. ;;
  59. esac