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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. #!/bin/sh
  2. #
  3. #
  4. # Additional Packages
  5. COMMON="
  6. joe htop
  7. rsync
  8. owncloud-client
  9. powerline powerline-fonts
  10. chrome-gnome-shell
  11. keepass xdotool xsel
  12. sshfs curlftpfs
  13. lib32-glibc brother-mfc-5890cn canon-pixma-ts5055-complete
  14. "
  15. MULTIMEDIA="
  16. rhythmbox audacious
  17. kodi kodi-addon-pvr-hts
  18. shotwell
  19. pro-audio pulseaudio-jack realtime-privileges soundfont-fluid
  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. "
  32. PROGRAMMING="
  33. python-pip
  34. python-virtualenv
  35. python2
  36. meld
  37. "
  38. ALL=$COMMON\ $MULTIMEDIA\ $TOOLS\ $PROGRAMMING
  39. echo The followin packages and their required depending packages will be installed:
  40. echo ------------------------------------------------------------------------------
  41. echo $ALL
  42. echo ------------------------------------------------------------------------------
  43. read -r -p "Are you sure? [y/N] " response
  44. echo ------------------------------------------------------------------------------
  45. case "$response" in
  46. [yY][eE][sS]|[yY])
  47. yay -S --needed $ALL
  48. ;;
  49. *)
  50. echo Installation aborted!
  51. ;;
  52. esac