|
@@ -0,0 +1,72 @@
|
|
1
|
+#!/bin/sh
|
|
2
|
+#
|
|
3
|
+
|
|
4
|
+#
|
|
5
|
+# Additional Packages
|
|
6
|
+COMMON="
|
|
7
|
+joe
|
|
8
|
+neofetch
|
|
9
|
+tlp tlp-rdw
|
|
10
|
+keepass2
|
|
11
|
+synaptic
|
|
12
|
+owncloud-client
|
|
13
|
+dolphin-owncloud
|
|
14
|
+"
|
|
15
|
+
|
|
16
|
+_COMMON_="
|
|
17
|
+git tmux
|
|
18
|
+sshfs curlftpfs libneon27
|
|
19
|
+openssh-server
|
|
20
|
+nfs-kernel-server
|
|
21
|
+lib32stdc++6
|
|
22
|
+powerline powerline-gitstatus fonts-powerline
|
|
23
|
+gnome-tweaks chrome-gnome-shell caffeine
|
|
24
|
+"
|
|
25
|
+
|
|
26
|
+MULTIMEDIA="
|
|
27
|
+kodi kodi-pvr-hts
|
|
28
|
+"
|
|
29
|
+_MULTIMEDIA_="
|
|
30
|
+ubuntu-restricted-extras libdvd-pkg
|
|
31
|
+ardour ubuntustudio-controls calf-plugins eq10q fluid-soundfont-gm fluid-soundfont-gs guitarix-ladspa swh-plugins
|
|
32
|
+gxtuner
|
|
33
|
+lame
|
|
34
|
+"
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+_TOOLS_="
|
|
38
|
+evolution
|
|
39
|
+gnuplot
|
|
40
|
+gvncviewer
|
|
41
|
+texlive-binaries texlive-latex-extra texlive-lang-german texlive-fonts-recommended latexila
|
|
42
|
+gimp
|
|
43
|
+kicad kicad-packages3d
|
|
44
|
+openscad freecad
|
|
45
|
+"
|
|
46
|
+
|
|
47
|
+_PROGRAMMING_="
|
|
48
|
+arduino
|
|
49
|
+minicom
|
|
50
|
+virtualenv
|
|
51
|
+libgtk-3-dev
|
|
52
|
+python3-pip
|
|
53
|
+meld
|
|
54
|
+"
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+ALL=$COMMON\ $MULTIMEDIA\ $TOOLS\ $PROGRAMMING
|
|
58
|
+
|
|
59
|
+echo The followin packages and their required depending packages will be installed:
|
|
60
|
+echo ------------------------------------------------------------------------------
|
|
61
|
+echo $ALL
|
|
62
|
+echo ------------------------------------------------------------------------------
|
|
63
|
+read -r -p "Are you sure? [y/N] " response
|
|
64
|
+echo ------------------------------------------------------------------------------
|
|
65
|
+case "$response" in
|
|
66
|
+ [yY][eE][sS]|[yY])
|
|
67
|
+ sudo apt-get -y install $ALL
|
|
68
|
+ ;;
|
|
69
|
+ *)
|
|
70
|
+ echo Installation aborted!
|
|
71
|
+ ;;
|
|
72
|
+esac
|