A bin folder, holding helpfull scripts and commands
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

yay-extend-endeavour 1.1KB

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