A bin folder, holding helpfull scripts and commands
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

yay-extend-endeavour 1.1KB

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