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

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