73 lines
1.3 KiB
Plaintext
73 lines
1.3 KiB
Plaintext
|
#!/bin/sh
|
||
|
#
|
||
|
|
||
|
#
|
||
|
# Additional Packages
|
||
|
COMMON="
|
||
|
joe
|
||
|
neofetch
|
||
|
tlp tlp-rdw
|
||
|
keepass2
|
||
|
synaptic
|
||
|
owncloud-client
|
||
|
dolphin-owncloud
|
||
|
"
|
||
|
|
||
|
_COMMON_="
|
||
|
git tmux
|
||
|
sshfs curlftpfs libneon27
|
||
|
openssh-server
|
||
|
nfs-kernel-server
|
||
|
lib32stdc++6
|
||
|
powerline powerline-gitstatus fonts-powerline
|
||
|
gnome-tweaks chrome-gnome-shell caffeine
|
||
|
"
|
||
|
|
||
|
MULTIMEDIA="
|
||
|
kodi kodi-pvr-hts
|
||
|
"
|
||
|
_MULTIMEDIA_="
|
||
|
ubuntu-restricted-extras libdvd-pkg
|
||
|
ardour ubuntustudio-controls calf-plugins eq10q fluid-soundfont-gm fluid-soundfont-gs guitarix-ladspa swh-plugins
|
||
|
gxtuner
|
||
|
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
|
||
|
minicom
|
||
|
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
|