bin/apt-extend-mx

40 lines
1.3 KiB
Plaintext
Raw Normal View History

2021-08-26 10:19:44 +02:00
#!/bin/sh
#
#
# Additional Packages
2024-05-12 19:45:24 +02:00
COMMON="keepass2 xdotool systemd-sysv openssh-server vim-nox tree"
# COMMON="$COMMON curlftpfs"
COMMON="$COMMON tlp tlp-rdw"
COMMON="$COMMON fonts-powerline"
COMMON="$COMMON nextcloud-desktop dolphin-nextcloud"
# COMMON="$COMMON fonts-powerline powerline powerline-gitstatus"
2021-08-26 10:19:44 +02:00
2024-05-12 19:45:24 +02:00
MULTIMEDIA="rhythmbox ario kodi kodi-pvr-hts"
MULTIMEDIA="$MULTIMEDIA lame"
MULTIMEDIA="$MULTIMEDIA qjackctl ardour calf-plugins eq10q fluid-soundfont-gm fluid-soundfont-gs lame"
2021-08-26 10:19:44 +02:00
2024-05-12 19:45:24 +02:00
TOOLS="wavemon evolution retext gnuplot latexmk texlive-latex-recommended texlive-latex-extra texlive-lang-german texlive-fonts-recommended"
2021-08-26 10:19:44 +02:00
2024-05-12 19:45:24 +02:00
PROGRAMMING="python-is-python3 python3-venv pkgconf libgtk2.0-dev jq meld"
2021-08-26 10:19:44 +02:00
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-get install -y $ALL"
;;
*)
echo Installation aborted!
;;
esac