bin/yay-extend-arch

92 lines
2.1 KiB
Plaintext
Raw Normal View History

2023-06-04 09:55:16 +02:00
#!/bin/sh
#
#
# Additional Packages
COMMON="
zsh zsh-syntax-highlighting zsh-autosuggestions
linux-headers
which tmux
neofetch
2023-06-04 19:55:15 +02:00
powerline powerline-fonts powerline-vim python-powerline-gitstatus
2023-06-10 22:08:56 +02:00
cinnamon gnome-terminal xorg gdm xed xviewer xreader xplayer
mate-icon-theme-faenza papirus-icon-theme arc-icon-theme hicolor-icon-theme obsidian-icon-theme
2023-06-04 19:55:15 +02:00
bluez bluez-utils blueberry
2023-06-10 22:08:56 +02:00
system-config-printer cups brother-mfc-j5330dw
2023-06-04 09:55:16 +02:00
keepass xdotool
tlp tlp-rdw
sshfs curlftpfs
2023-06-10 22:08:56 +02:00
nextcloud-client
2023-06-04 09:55:16 +02:00
"
MULTIMEDIA="
2023-06-10 22:08:56 +02:00
jack2 qjackctl carla ardour calf eq10q soundfont-fluid swh-plugins guitarix xplugins.lv2
rhythmbox ario
2023-06-04 09:55:16 +02:00
"
_="ffmpeg
kodi kodi-pvr-hts
spotify-client
photocollage
gxtuner
lame
"
TOOLS="
2023-06-10 22:08:56 +02:00
docker docker-compose
firefox evolution gnome-keyring
texlive-bin texlive-latexextra
libreoffice-still
pdfmerger
2023-06-04 09:55:16 +02:00
"
_="
gnuplot
gvncviewer
gimp
kicad kicad-packages3d
openscad freecad
"
PROGRAMMING="
2023-06-10 22:08:56 +02:00
python-pip python-virtualenv jq
python-wxpython
2023-06-04 09:55:16 +02:00
meld
2023-06-10 22:08:56 +02:00
code code-oss-marketplace autopep8
2023-06-04 09:55:16 +02:00
"
_="arduino patchelf libserialport0
minicom
"
2023-06-04 19:55:15 +02:00
2023-06-04 09:55:16 +02:00
ALL=$COMMON\ $MULTIMEDIA\ $TOOLS\ $PROGRAMMING
2023-06-04 19:55:15 +02:00
echo Updating repositories:
echo ----------------------
echo
2023-06-04 09:55:16 +02:00
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])
2023-06-10 22:08:56 +02:00
yay --needed -Sy $ALL
2023-06-04 09:55:16 +02:00
#
echo
echo You might want to execute the following commands:
echo -------------------------------------------------
echo systemctl enable gdm
2023-06-04 19:55:15 +02:00
echo systemctl disable systemd-netword
2023-06-04 09:55:16 +02:00
echo systemctl enable NetworkManager
2023-06-04 19:55:15 +02:00
echo systemctl disable wpa_supplicant@xxxx
echo systemctl enable wpa_supplicant
echo systemctl enable bluetooth
2023-06-04 09:55:16 +02:00
echo
echo and reboot the system...
;;
*)
echo Installation aborted!
;;
esac