A bin folder, holding helpfull scripts and commands
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

apt-extend-ubuntustudio 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. "
  26. _MULTIMEDIA_="
  27. ubuntu-restricted-extras libdvd-pkg
  28. ardour ubuntustudio-controls calf-plugins eq10q fluid-soundfont-gm fluid-soundfont-gs guitarix-ladspa swh-plugins
  29. gxtuner
  30. lame
  31. "
  32. _TOOLS_="
  33. evolution
  34. gnuplot
  35. gvncviewer
  36. texlive-binaries texlive-latex-extra texlive-lang-german texlive-fonts-recommended latexila
  37. gimp
  38. kicad kicad-packages3d
  39. openscad freecad
  40. "
  41. _PROGRAMMING_="
  42. arduino
  43. minicom
  44. virtualenv
  45. libgtk-3-dev
  46. python3-pip
  47. meld
  48. "
  49. ALL=$COMMON\ $MULTIMEDIA\ $TOOLS\ $PROGRAMMING
  50. echo The followin packages and their required depending packages will be installed:
  51. echo ------------------------------------------------------------------------------
  52. echo $ALL
  53. echo ------------------------------------------------------------------------------
  54. read -r -p "Are you sure? [y/N] " response
  55. echo ------------------------------------------------------------------------------
  56. case "$response" in
  57. [yY][eE][sS]|[yY])
  58. sudo apt-get -y install $ALL
  59. ;;
  60. *)
  61. echo Installation aborted!
  62. ;;
  63. esac