bin/apt-extend-ubuntu

60 lines
1.1 KiB
Bash
Executable File

#!/bin/sh
#
#
# Additional Packages
COMMON="
joe git tmux
synaptic
neofetch
sshfs curlftpfs libneon27
keepass2 xdotool
tlp tlp-rdw
lib32stdc++6
powerline powerline-gitstatus
"
MULTIMEDIA="
kodi kodi-pvr-hts
ubuntu-restricted-extras libdvd-pkg
ardour ubuntustudio-controls calf-plugins eq10q fluid-soundfont-gm fluid-soundfont-gs lame
"
TOOLS="
evolution
gnuplot
gvncviewer
texlive-binaries texlive-latex-extra texlive-lang-german texlive-fonts-recommended latexila
gimp
kicad kicad-packages3d
openscad freecad
"
PROGRAMMING="
arduino
virtualenv
libgtk-3-dev
python3-pip
meld
"
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])
sudo apt-get -y install $ALL
;;
*)
echo Installation aborted!
;;
esac