A bin folder, holding helpfull scripts and commands
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

yay-extend-endeavour 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. "
  13. MULTIMEDIA="
  14. rhythmbox audacious
  15. kodi kodi-addon-pvr-hts
  16. shotwell
  17. photocollage
  18. pro-audio pulseaudio-jack realtime-privileges soundfont-fluid
  19. "
  20. TOOLS="
  21. evolution
  22. freemind
  23. libreoffice-fresh
  24. texlive-bin texlive-latexextra
  25. gnome-latex
  26. gimp
  27. librecad
  28. xfig
  29. docker docker-compose
  30. kicad
  31. openscad
  32. freecad
  33. "
  34. PROGRAMMING="
  35. python-pip
  36. python-virtualenv
  37. python2
  38. meld
  39. gcc gdb
  40. arduino picocom
  41. "
  42. ALL=$COMMON\ $MULTIMEDIA\ $TOOLS\ $PROGRAMMING
  43. echo The followin packages and their required depending packages will be installed:
  44. echo ------------------------------------------------------------------------------
  45. echo $ALL
  46. echo ------------------------------------------------------------------------------
  47. read -r -p "Are you sure? [y/N] " response
  48. echo ------------------------------------------------------------------------------
  49. case "$response" in
  50. [yY][eE][sS]|[yY])
  51. yay -S --needed $ALL
  52. ;;
  53. *)
  54. echo Installation aborted!
  55. ;;
  56. esac