A bin folder, holding helpfull scripts and commands
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

apt-extend-ubuntu 1.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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. python3-pip
  46. "
  47. _PROGRAMMING="
  48. pycodestyle
  49. virtualenv
  50. python-coverage python3-coverage python-jinja2 python3-jinja2
  51. python-wxtools python3-wxgtk4.0
  52. python3-evdev python3-serial
  53. python3-sphinx python3-sphinx-rtd-theme
  54. meld
  55. retext
  56. "
  57. ALL=$COMMON\ $MULTIMEDIA\ $TOOLS\ $PROGRAMMING
  58. echo The followin packages and their required depending packages will be installed:
  59. echo ------------------------------------------------------------------------------
  60. echo $ALL
  61. echo ------------------------------------------------------------------------------
  62. read -r -p "Are you sure? [y/N] " response
  63. echo ------------------------------------------------------------------------------
  64. case "$response" in
  65. [yY][eE][sS]|[yY])
  66. sudo apt-get -y install $ALL
  67. ;;
  68. *)
  69. echo Installation aborted!
  70. ;;
  71. esac