66 lignes
1.3 KiB
Bash
Fichiers exécutables
66 lignes
1.3 KiB
Bash
Fichiers exécutables
#!/bin/sh
|
|
#
|
|
|
|
#
|
|
# Additional Packages
|
|
COMMON="
|
|
joe git tmux
|
|
synaptic
|
|
neofetch
|
|
sshfs curlftpfs libneon27
|
|
openssh-server
|
|
nfs-kernel-server
|
|
keepass2 xdotool
|
|
tlp tlp-rdw
|
|
lib32stdc++6
|
|
powerline powerline-gitstatus fonts-powerline
|
|
gnome-tweaks chrome-gnome-shell caffeine
|
|
"
|
|
|
|
|
|
MULTIMEDIA="
|
|
kodi kodi-pvr-hts
|
|
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
|