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.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. bluez bluez-utils pulseaudio-bluetooth bluedevil
  20. "
  21. TOOLS="
  22. evolution
  23. freemind
  24. libreoffice-fresh
  25. texlive-bin texlive-latexextra
  26. gnome-latex
  27. gimp
  28. librecad
  29. xfig
  30. docker docker-compose
  31. kicad kicad-library kicad-library-3d
  32. openscad
  33. freecad
  34. "
  35. PROGRAMMING="
  36. python-pip
  37. python-virtualenv
  38. python2
  39. meld
  40. gcc gdb
  41. arduino picocom
  42. "
  43. ALL=$COMMON\ $MULTIMEDIA\ $TOOLS\ $PROGRAMMING
  44. echo The followin packages and their required depending packages will be installed:
  45. echo ------------------------------------------------------------------------------
  46. echo $ALL
  47. echo ------------------------------------------------------------------------------
  48. read -r -p "Are you sure? [y/N] " response
  49. echo ------------------------------------------------------------------------------
  50. case "$response" in
  51. [yY][eE][sS]|[yY])
  52. yay -S --needed $ALL
  53. echo Enable bluetooth by: sudo systemctl enable --now bluetooth
  54. ;;
  55. *)
  56. echo Installation aborted!
  57. ;;
  58. esac