bin/apt-extend-ubuntu

60 lines
1.1 KiB
Plaintext
Raw Normal View History

2021-08-26 10:19:44 +02:00
#!/bin/sh
#
#
# Additional Packages
COMMON="
2021-12-25 22:41:09 +01:00
joe git tmux
2021-08-26 10:19:44 +02:00
synaptic
neofetch
2021-12-28 13:28:13 +01:00
sshfs curlftpfs libneon27
2021-08-26 10:19:44 +02:00
keepass2 xdotool
tlp tlp-rdw
lib32stdc++6
2021-12-25 22:41:09 +01:00
powerline powerline-gitstatus
2021-08-26 10:19:44 +02:00
"
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
2021-12-25 22:41:09 +01:00
texlive-binaries texlive-latex-extra texlive-lang-german texlive-fonts-recommended latexila
2021-08-26 10:19:44 +02:00
gimp
2021-12-28 13:28:13 +01:00
kicad kicad-packages3d
openscad freecad
2021-08-26 10:19:44 +02:00
"
PROGRAMMING="
2021-12-28 13:28:13 +01:00
arduino
2021-08-26 10:19:44 +02:00
virtualenv
2021-12-25 22:41:09 +01:00
libgtk-3-dev
2021-12-24 20:06:01 +01:00
python3-pip
2021-08-26 10:19:44 +02:00
meld
"
2021-12-25 22:41:09 +01:00
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])
sudo apt-get -y install $ALL
;;
*)
echo Installation aborted!
;;
esac