#!/bin/sh # # # Additional Packages COMMON="" COMMON="$COMMON htop keepassxc vim-nox" # systemd-sysv COMMON="$COMMON curlftpfs" COMMON="$COMMON wakeonlan" COMMON="$COMMON tlp tlp-rdw" ## COMMON="$COMMON fonts-powerline" COMMON="$COMMON nextcloud-desktop dolphin-nextcloud" ## Use KDE-Wayland and activate maliit under System (Search Virtual Keyboard) ## COMMON="$COMMON maliit-keyboard" ## COMMON="$COMMON fonts-powerline powerline powerline-gitstatus" MULTIMEDIA="" MULTIMEDIA="$MULTIMEDIA rhythmbox ario kodi kodi-pvr-hts" ## MULTIMEDIA="$MULTIMEDIA lame" ## MULTIMEDIA="$MULTIMEDIA qjackctl carla carla-lv2 carla-vst ardour calf-plugins eq10q fluid-soundfont-gm fluid-soundfont-gs lame" TOOLS="" TOOLS="$TOOLS wavemon retext" # gnuplot TOOLS="evolution gnuplot latexmk texlive-latex-recommended texlive-latex-extra texlive-lang-german texlive-plain-generic texlive-fonts-recommended" PROGRAMMING="" PROGRAMMING="$PROGRAMMING python-is-python3 python3-venv python3-wxgtk4.0 jq meld" # PROGRAMMING="$PROGRAMMING code" ## PROGRAMMING="pkgconf libgtk2.0-dev" ALL=$COMMON\ $MULTIMEDIA\ $TOOLS\ $PROGRAMMING echo The followin packages and their required depending packages will be installed: echo ------------------------------------------------------------------------------ echo $ALL echo ------------------------------------------------------------------------------ read -r -p "Are you sure? [y/N] " response echo ------------------------------------------------------------------------------ case "$response" in [yY][eE][sS]|[yY]) echo $ALL #su --command="apt install curl" #su --command="curl -sSL https://packages.microsoft.com/keys/microsoft.asc | sudo apt key add -" #su --command="add-apt-repository \"deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main\"" #su --command="apt update" su --command="apt-get install -y $ALL" ;; *) echo Installation aborted! ;; esac