bin/yay-extend-endeavour

58 lines
1.1 KiB
Plaintext
Raw Normal View History

2021-08-26 10:19:44 +02:00
#!/bin/sh
#
#
# Additional Packages
COMMON="
joe htop
owncloud-client
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
pro-audio pulseaudio-jack realtime-privileges soundfont-fluid
"
TOOLS="
evolution
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