12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- #!/bin/sh
- #
-
- #
- # Additional Packages
- COMMON="
- joe htop
- rsync
- owncloud-client python-nautilus
- rabbitvcs-nautilus
- powerline powerline-fonts
- chrome-gnome-shell
- keepass xdotool xsel
- sshfs curlftpfs
- lib32-glibc brother-mfc-5890cn canon-pixma-ts5055-complete
- "
-
- MULTIMEDIA="
- rhythmbox audacious
- kodi kodi-addon-pvr-hts
- shotwell
- photocollage
- pro-audio pulseaudio-jack realtime-privileges soundfont-fluid
- "
-
- TOOLS="
- evolution
- freemind
- libreoffice-fresh
- texlive-bin texlive-latexextra
- gnome-latex
- gimp
- librecad
- xfig
- docker docker-compose
- "
-
- PROGRAMMING="
- python-pip
- python-virtualenv
- python2
- 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])
- yay -S --needed $ALL
- ;;
- *)
- echo Installation aborted!
- ;;
- esac
|