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.

apt-extend-ubuntustudio 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. #!/bin/sh
  2. #
  3. #
  4. # Additional Packages
  5. COMMON="
  6. joe
  7. neofetch
  8. tlp tlp-rdw
  9. keepass2
  10. synaptic
  11. owncloud-client
  12. dolphin-owncloud
  13. "
  14. _COMMON_="
  15. git tmux
  16. sshfs curlftpfs libneon27
  17. openssh-server
  18. nfs-kernel-server
  19. lib32stdc++6
  20. powerline powerline-gitstatus fonts-powerline
  21. gnome-tweaks chrome-gnome-shell caffeine
  22. "
  23. MULTIMEDIA="
  24. kodi kodi-pvr-hts
  25. ubuntu-restricted-extras libdvd-pkg
  26. "
  27. _MULTIMEDIA_="
  28. ubuntu-restricted-extras libdvd-pkg
  29. ardour ubuntustudio-controls calf-plugins eq10q fluid-soundfont-gm fluid-soundfont-gs guitarix-ladspa swh-plugins
  30. gxtuner
  31. lame
  32. "
  33. _TOOLS_="
  34. evolution
  35. gnuplot
  36. gvncviewer
  37. texlive-binaries texlive-latex-extra texlive-lang-german texlive-fonts-recommended latexila
  38. gimp
  39. kicad kicad-packages3d
  40. openscad freecad
  41. "
  42. _PROGRAMMING_="
  43. arduino
  44. minicom
  45. virtualenv
  46. libgtk-3-dev
  47. python3-pip
  48. meld
  49. "
  50. ALL=$COMMON\ $MULTIMEDIA\ $TOOLS\ $PROGRAMMING
  51. echo The followin packages and their required depending packages will be installed:
  52. echo ------------------------------------------------------------------------------
  53. echo $ALL
  54. echo ------------------------------------------------------------------------------
  55. read -r -p "Are you sure? [y/N] " response
  56. echo ------------------------------------------------------------------------------
  57. case "$response" in
  58. [yY][eE][sS]|[yY])
  59. sudo apt-get -y install $ALL
  60. ;;
  61. *)
  62. echo Installation aborted!
  63. ;;
  64. esac