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-04 09:55:16 +02:00
|
|
|
cinnamon gnome-terminal xorg gdm mate-icon-theme-faenza
|
2023-06-04 19:55:15 +02:00
|
|
|
bluez bluez-utils blueberry
|
2023-06-04 09:55:16 +02:00
|
|
|
keepass xdotool
|
|
|
|
tlp tlp-rdw
|
|
|
|
sshfs curlftpfs
|
|
|
|
"
|
|
|
|
|
|
|
|
MULTIMEDIA="
|
|
|
|
jack2
|
|
|
|
"
|
|
|
|
_="ffmpeg
|
|
|
|
kodi kodi-pvr-hts
|
|
|
|
spotify-client
|
|
|
|
photocollage
|
|
|
|
ardour calf-plugins eq10q fluid-soundfont-gm fluid-soundfont-gs guitarix-ladspa swh-plugins
|
|
|
|
ubuntustudio-controls carla
|
|
|
|
sonata elisa obs-studio kdenlive
|
|
|
|
gxtuner
|
|
|
|
lame
|
|
|
|
"
|
|
|
|
|
|
|
|
|
|
|
|
TOOLS="
|
|
|
|
firefox evolution
|
|
|
|
"
|
|
|
|
_="
|
|
|
|
gnuplot
|
|
|
|
gvncviewer
|
|
|
|
texlive-binaries texlive-latex-extra texlive-lang-german texlive-fonts-recommended texstudio
|
|
|
|
gimp
|
|
|
|
kicad kicad-packages3d
|
|
|
|
openscad freecad
|
|
|
|
"
|
|
|
|
|
|
|
|
PROGRAMMING="
|
|
|
|
python-pip
|
|
|
|
meld
|
|
|
|
"
|
|
|
|
_="arduino patchelf libserialport0
|
|
|
|
minicom
|
|
|
|
pycodestyle
|
|
|
|
virtualenv
|
|
|
|
python3-wxgtk4.0
|
|
|
|
python3-pip
|
|
|
|
meld
|
|
|
|
"
|
|
|
|
|
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 ----------------------
|
|
|
|
yay -Syy
|
|
|
|
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-04 19:55:15 +02:00
|
|
|
yay --needed -S $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
|