apt-extend-mint improved
This commit is contained in:
parent
7d7a8bbdc2
commit
e8daad84f4
@ -1,13 +1,50 @@
|
|||||||
# common
|
#!/bin/sh
|
||||||
sudo apt-get install joe git
|
#
|
||||||
sudo apt-get install keepass2 xdotool
|
|
||||||
sudo apt-get install sshfs curlftpfs openssh-server
|
#
|
||||||
sudo apt-get install fonts-powerline powerline python3-powerline python3-powerline-gitstatus
|
# Additional Packages
|
||||||
# multimedia
|
COMMON="
|
||||||
sudo apt-get install kodi kodi-pvr-hts
|
joe git tmux
|
||||||
sudo apt-get install evolution
|
keepass2 xdotool
|
||||||
# programming
|
sshfs curlftpfs openssh-server
|
||||||
sudo apt-get install python-coverage python3-coverage python-jinja2 python3-jinja2
|
fonts-powerline powerline python3-powerline python3-powerline-gitstatus
|
||||||
sudo apt-get install python-wxtools python3-wxgtk4.0
|
lib32stdc++6
|
||||||
sudo apt-get install texlive-binaries texlive-latex-extra texlive-lang-german texlive-fonts-recommended texstudio
|
"
|
||||||
sudo apt-get install meld
|
|
||||||
|
MULTIMEDIA="
|
||||||
|
kodi kodi-pvr-hts
|
||||||
|
spotify-client
|
||||||
|
"
|
||||||
|
|
||||||
|
TOOLS="
|
||||||
|
evolution
|
||||||
|
gnome-boxes
|
||||||
|
gvncviewer
|
||||||
|
texlive-binaries texlive-latex-extra texlive-lang-german texlive-fonts-recommended texstudio
|
||||||
|
"
|
||||||
|
|
||||||
|
PROGRAMMING="
|
||||||
|
pycodestyle
|
||||||
|
virtualenv
|
||||||
|
python-coverage python3-coverage python-jinja2 python3-jinja2
|
||||||
|
python-wxtools python3-wxgtk4.0
|
||||||
|
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
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo Installation aborted!
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user