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-ubuntu 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. #!/bin/sh
  2. #
  3. #
  4. # Additional Packages
  5. COMMON="
  6. joe git tmux
  7. synaptic
  8. neofetch
  9. sshfs curlftpfs libneon27
  10. keepass2 xdotool
  11. tlp tlp-rdw
  12. lib32stdc++6
  13. powerline powerline-gitstatus
  14. "
  15. MULTIMEDIA="
  16. kodi kodi-pvr-hts
  17. ubuntu-restricted-extras libdvd-pkg
  18. ardour ubuntustudio-controls calf-plugins eq10q fluid-soundfont-gm fluid-soundfont-gs lame
  19. "
  20. TOOLS="
  21. evolution
  22. gnuplot
  23. gvncviewer
  24. texlive-binaries texlive-latex-extra texlive-lang-german texlive-fonts-recommended latexila
  25. gimp
  26. kicad kicad-packages3d
  27. openscad freecad
  28. "
  29. PROGRAMMING="
  30. arduino
  31. virtualenv
  32. libgtk-3-dev
  33. python3-pip
  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. sudo apt-get -y install $ALL
  46. ;;
  47. *)
  48. echo Installation aborted!
  49. ;;
  50. esac