A bin folder, holding helpfull scripts and commands
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839
  1. #!/bin/sh
  2. #
  3. #
  4. # Additional Packages
  5. COMMON="keepass2 xdotool systemd-sysv openssh-server vim-nox tree"
  6. # COMMON="$COMMON curlftpfs"
  7. COMMON="$COMMON tlp tlp-rdw"
  8. COMMON="$COMMON fonts-powerline"
  9. COMMON="$COMMON nextcloud-desktop dolphin-nextcloud"
  10. # COMMON="$COMMON fonts-powerline powerline powerline-gitstatus"
  11. MULTIMEDIA="rhythmbox ario kodi kodi-pvr-hts"
  12. MULTIMEDIA="$MULTIMEDIA lame"
  13. MULTIMEDIA="$MULTIMEDIA qjackctl carla carla-lv2 carla-vst ardour calf-plugins eq10q fluid-soundfont-gm fluid-soundfont-gs lame"
  14. TOOLS="wavemon evolution retext gnuplot latexmk texlive-latex-recommended texlive-latex-extra texlive-lang-german texlive-plain-generic texlive-fonts-recommended"
  15. PROGRAMMING="python-is-python3 python3-venv pkgconf libgtk2.0-dev jq meld"
  16. ALL=$COMMON\ $MULTIMEDIA\ $TOOLS\ $PROGRAMMING
  17. echo The followin packages and their required depending packages will be installed:
  18. echo ------------------------------------------------------------------------------
  19. echo $ALL
  20. echo ------------------------------------------------------------------------------
  21. read -r -p "Are you sure? [y/N] " response
  22. echo ------------------------------------------------------------------------------
  23. case "$response" in
  24. [yY][eE][sS]|[yY])
  25. echo $ALL
  26. su --command="apt-get install -y $ALL"
  27. ;;
  28. *)
  29. echo Installation aborted!
  30. ;;
  31. esac