bin/apt-extend-ubuntu

66 lines
1.3 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
2022-01-17 08:31:56 +01:00
openssh-server
nfs-kernel-server
2021-08-26 10:19:44 +02:00
keepass2 xdotool
tlp tlp-rdw
lib32stdc++6
2022-01-17 08:31:56 +01:00
powerline powerline-gitstatus fonts-powerline
gnome-tweaks chrome-gnome-shell caffeine
2021-08-26 10:19:44 +02:00
"
MULTIMEDIA="
kodi kodi-pvr-hts
ubuntu-restricted-extras libdvd-pkg
2022-01-17 08:31:56 +01:00
ardour ubuntustudio-controls calf-plugins eq10q fluid-soundfont-gm fluid-soundfont-gs guitarix-ladspa swh-plugins
gxtuner
lame
2021-08-26 10:19:44 +02:00
"
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
2022-01-17 08:31:56 +01:00
minicom
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