1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- #!/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
|