bin/apt-extend-mint

70 lines
1.4 KiB
Plaintext
Raw Normal View History

2021-01-17 16:09:57 +01:00
#!/bin/sh
#
#
# Additional Packages
COMMON="
joe git tmux
2022-08-28 10:03:35 +02:00
synaptic
owncloud-client
2021-01-17 16:09:57 +01:00
keepass2 xdotool
2022-08-28 10:03:35 +02:00
tlp tlp-rdw
2021-03-07 21:44:45 +01:00
brasero
2021-01-17 16:09:57 +01:00
sshfs curlftpfs openssh-server
fonts-powerline powerline python3-powerline python3-powerline-gitstatus
"
MULTIMEDIA="
2021-03-07 21:44:45 +01:00
ffmpeg
2021-01-17 16:09:57 +01:00
kodi kodi-pvr-hts
spotify-client
2021-08-26 10:19:44 +02:00
photocollage
2022-08-28 10:03:35 +02:00
ardour calf-plugins eq10q fluid-soundfont-gm fluid-soundfont-gs guitarix-ladspa swh-plugins
ubuntustudio-controls carla
sonata elisa obs-studio kdenlive
gxtuner
lame
2021-01-17 16:09:57 +01:00
"
2021-08-26 10:19:44 +02:00
2021-01-17 16:09:57 +01:00
TOOLS="
evolution
2021-03-07 21:44:45 +01:00
gnuplot
2021-01-17 16:09:57 +01:00
gvncviewer
texlive-binaries texlive-latex-extra texlive-lang-german texlive-fonts-recommended texstudio
2021-03-07 21:44:45 +01:00
gimp
2022-08-28 10:03:35 +02:00
kicad kicad-packages3d
openscad freecad
2021-01-17 16:09:57 +01:00
"
PROGRAMMING="
2022-08-28 10:03:35 +02:00
arduino
minicom
2021-01-17 16:09:57 +01:00
pycodestyle
virtualenv
2022-08-28 10:03:35 +02:00
python3-wxgtk4.0
python3-pip
2021-01-17 16:09:57 +01:00
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])
sudo apt-get -y install $ALL
2022-08-28 10:03:35 +02:00
#
echo
echo
echo You need to enable and start tlp, if you want to have it running.
2021-01-17 16:09:57 +01:00
;;
*)
echo Installation aborted!
;;
esac