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-mint 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. #!/bin/sh
  2. #
  3. #
  4. # Additional Packages
  5. COMMON="
  6. zsh zsh-syntax-highlighting zsh-autosuggestions
  7. vim vim-python-jedi vim-autopep8 git tmux
  8. synaptic
  9. owncloud-client
  10. keepass2 xdotool
  11. tlp tlp-rdw
  12. brasero
  13. sshfs curlftpfs openssh-server
  14. fonts-powerline powerline python3-powerline python3-powerline-gitstatus
  15. "
  16. MULTIMEDIA="
  17. ffmpeg
  18. kodi kodi-pvr-hts
  19. spotify-client
  20. photocollage
  21. ardour calf-plugins eq10q fluid-soundfont-gm fluid-soundfont-gs guitarix-ladspa swh-plugins
  22. ubuntustudio-controls carla
  23. sonata elisa obs-studio kdenlive
  24. gxtuner
  25. lame
  26. "
  27. TOOLS="
  28. evolution
  29. gnuplot
  30. gvncviewer
  31. texlive-binaries texlive-latex-extra texlive-lang-german texlive-fonts-recommended texstudio
  32. gimp
  33. kicad kicad-packages3d
  34. openscad freecad
  35. "
  36. PROGRAMMING="
  37. arduino patchelf libserialport0
  38. minicom
  39. pycodestyle
  40. virtualenv
  41. python3-wxgtk4.0
  42. python3-pip
  43. meld
  44. "
  45. ALL=$COMMON\ $MULTIMEDIA\ $TOOLS\ $PROGRAMMING
  46. echo The followin packages and their required depending packages will be installed:
  47. echo ------------------------------------------------------------------------------
  48. echo $ALL
  49. echo ------------------------------------------------------------------------------
  50. read -r -p "Are you sure? [y/N] " response
  51. echo ------------------------------------------------------------------------------
  52. case "$response" in
  53. [yY][eE][sS]|[yY])
  54. sudo apt-get -y install $ALL
  55. #
  56. echo
  57. echo
  58. echo You need to enable and start tlp, if you want to have it running.
  59. echo Execute: sudo patchelf --add-needed libserialport.so.0 /usr/lib/x86_64-linux-gnu/liblistSerialsj.so.1.4.0 for arduino startup
  60. ;;
  61. *)
  62. echo Installation aborted!
  63. ;;
  64. esac