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.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. #!/bin/sh
  2. #
  3. #
  4. # Additional Packages
  5. COMMON="
  6. joe git
  7. synaptic
  8. neofetch
  9. sshfs curlftpfs
  10. keepass2 xdotool
  11. tlp tlp-rdw
  12. lib32stdc++6
  13. "
  14. _COMMON="
  15. joe git tmux
  16. keepass2 xdotool
  17. brasero
  18. sshfs curlftpfs openssh-server
  19. fonts-powerline powerline python3-powerline python3-powerline-gitstatus
  20. lib32stdc++6
  21. "
  22. MULTIMEDIA="
  23. kodi kodi-pvr-hts
  24. ubuntu-restricted-extras libdvd-pkg
  25. "
  26. _MULTIMEDIA="
  27. ffmpeg
  28. spotify-client
  29. photocollage
  30. ardour ubuntustudio-controls calf-plugins eq10q fluid-soundfont-gm fluid-soundfont-gs lame
  31. "
  32. TOOLS="
  33. "
  34. _TOOLS="
  35. evolution
  36. gnuplot
  37. gnome-boxes
  38. gvncviewer
  39. texlive-binaries texlive-latex-extra texlive-lang-german texlive-fonts-recommended texstudio
  40. gimp
  41. "
  42. PROGRAMMING="
  43. virtualenv
  44. python3-wxgtk4.0
  45. "
  46. _PROGRAMMING="
  47. pycodestyle
  48. virtualenv
  49. python-coverage python3-coverage python-jinja2 python3-jinja2
  50. python-wxtools python3-wxgtk4.0
  51. python3-evdev python3-serial
  52. python3-sphinx python3-sphinx-rtd-theme
  53. meld
  54. retext
  55. "
  56. ALL=$COMMON\ $MULTIMEDIA\ $TOOLS\ $PROGRAMMING
  57. echo The followin packages and their required depending packages will be installed:
  58. echo ------------------------------------------------------------------------------
  59. echo $ALL
  60. echo ------------------------------------------------------------------------------
  61. read -r -p "Are you sure? [y/N] " response
  62. echo ------------------------------------------------------------------------------
  63. case "$response" in
  64. [yY][eE][sS]|[yY])
  65. sudo apt-get -y install $ALL
  66. ;;
  67. *)
  68. echo Installation aborted!
  69. ;;
  70. esac