Browse Source

apt-extend-mint improved

84582af
Dirk Alders 3 years ago
parent
commit
e8daad84f4
1 changed files with 50 additions and 13 deletions
  1. 50
    13
      apt-extend-mint

+ 50
- 13
apt-extend-mint View File

@@ -1,13 +1,50 @@
1
-# common
2
-sudo apt-get install joe git
3
-sudo apt-get install keepass2 xdotool
4
-sudo apt-get install sshfs curlftpfs openssh-server
5
-sudo apt-get install fonts-powerline powerline python3-powerline python3-powerline-gitstatus
6
-# multimedia
7
-sudo apt-get install kodi kodi-pvr-hts
8
-sudo apt-get install evolution
9
-# programming
10
-sudo apt-get install python-coverage python3-coverage python-jinja2 python3-jinja2
11
-sudo apt-get install python-wxtools python3-wxgtk4.0
12
-sudo apt-get install texlive-binaries texlive-latex-extra texlive-lang-german texlive-fonts-recommended texstudio
13
-sudo apt-get install meld
1
+#!/bin/sh
2
+#
3
+
4
+#
5
+# Additional Packages
6
+COMMON="
7
+joe git tmux
8
+keepass2 xdotool
9
+sshfs curlftpfs openssh-server
10
+fonts-powerline powerline python3-powerline python3-powerline-gitstatus
11
+lib32stdc++6
12
+"
13
+
14
+MULTIMEDIA="
15
+kodi kodi-pvr-hts
16
+spotify-client
17
+"
18
+
19
+TOOLS="
20
+evolution
21
+gnome-boxes
22
+gvncviewer
23
+texlive-binaries texlive-latex-extra texlive-lang-german texlive-fonts-recommended texstudio
24
+"
25
+
26
+PROGRAMMING="
27
+pycodestyle
28
+virtualenv
29
+python-coverage python3-coverage python-jinja2 python3-jinja2
30
+python-wxtools python3-wxgtk4.0
31
+meld
32
+"
33
+
34
+ALL=$COMMON\ $MULTIMEDIA\ $TOOLS\ $PROGRAMMING
35
+
36
+echo The followin packages and their required depending packages will be installed:
37
+echo ------------------------------------------------------------------------------
38
+echo $ALL
39
+echo ------------------------------------------------------------------------------
40
+read -r -p "Are you sure? [y/N] " response
41
+echo ------------------------------------------------------------------------------
42
+case "$response" in
43
+    [yY][eE][sS]|[yY]) 
44
+        sudo apt-get -y install $ALL
45
+        ;;
46
+    *)
47
+        echo Installation aborted!
48
+        ;;
49
+esac
50
+

Loading…
Cancel
Save