bin/yay-extend-endeavour

66 lines
1.3 KiB
Plaintext
Raw Normal View History

2021-08-26 10:19:44 +02:00
#!/bin/sh
#
#
# Additional Packages
COMMON="
joe htop
2021-08-30 06:09:42 +02:00
rsync
2021-12-20 10:42:14 +01:00
owncloud-client
keepass xsel
2021-08-26 10:19:44 +02:00
sshfs curlftpfs
lib32-glibc brother-mfc-5890cn canon-pixma-ts5055-complete
"
MULTIMEDIA="
rhythmbox audacious
kodi kodi-addon-pvr-hts
shotwell
2021-09-22 12:25:12 +02:00
photocollage
2021-08-26 10:19:44 +02:00
pro-audio pulseaudio-jack realtime-privileges soundfont-fluid
2021-12-21 06:51:39 +01:00
bluez bluez-utils pulseaudio-bluetooth bluedevil
2021-08-26 10:19:44 +02:00
"
TOOLS="
evolution
2021-08-30 06:09:42 +02:00
freemind
2021-08-26 10:19:44 +02:00
libreoffice-fresh
texlive-bin texlive-latexextra
gnome-latex
gimp
librecad
xfig
docker docker-compose
2021-12-20 16:31:39 +01:00
kicad kicad-library kicad-library-3d
2021-12-20 10:42:14 +01:00
openscad
freecad
2021-08-26 10:19:44 +02:00
"
PROGRAMMING="
python-pip
python-virtualenv
python2
meld
2021-12-20 10:42:14 +01:00
gcc gdb
arduino picocom
2021-08-26 10:19:44 +02:00
"
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
2021-12-21 06:51:39 +01:00
echo Enable bluetooth by: sudo systemctl enable --now bluetooth
2021-08-26 10:19:44 +02:00
;;
*)
echo Installation aborted!
;;
esac