1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- #!/bin/sh
- #
-
- #
- # Additional Packages
- COMMON="
- joe git tmux
- keepass2 xdotool
- sshfs curlftpfs openssh-server
- fonts-powerline powerline python3-powerline python3-powerline-gitstatus
- lib32stdc++6
- "
-
- MULTIMEDIA="
- kodi kodi-pvr-hts
- spotify-client
- "
-
- TOOLS="
- evolution
- gnome-boxes
- gvncviewer
- texlive-binaries texlive-latex-extra texlive-lang-german texlive-fonts-recommended texstudio
- "
-
- PROGRAMMING="
- pycodestyle
- virtualenv
- python-coverage python3-coverage python-jinja2 python3-jinja2
- python-wxtools python3-wxgtk4.0
- 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
|