|
@@ -5,11 +5,13 @@
|
5
|
5
|
# Additional Packages
|
6
|
6
|
COMMON="
|
7
|
7
|
joe git tmux
|
|
8
|
+synaptic
|
|
9
|
+owncloud-client
|
8
|
10
|
keepass2 xdotool
|
|
11
|
+tlp tlp-rdw
|
9
|
12
|
brasero
|
10
|
13
|
sshfs curlftpfs openssh-server
|
11
|
14
|
fonts-powerline powerline python3-powerline python3-powerline-gitstatus
|
12
|
|
-lib32stdc++6
|
13
|
15
|
"
|
14
|
16
|
|
15
|
17
|
MULTIMEDIA="
|
|
@@ -17,28 +19,32 @@ ffmpeg
|
17
|
19
|
kodi kodi-pvr-hts
|
18
|
20
|
spotify-client
|
19
|
21
|
photocollage
|
20
|
|
-ardour ubuntustudio-controls calf-plugins eq10q fluid-soundfont-gm fluid-soundfont-gs lame
|
|
22
|
+ardour calf-plugins eq10q fluid-soundfont-gm fluid-soundfont-gs guitarix-ladspa swh-plugins
|
|
23
|
+ubuntustudio-controls carla
|
|
24
|
+sonata elisa obs-studio kdenlive
|
|
25
|
+gxtuner
|
|
26
|
+lame
|
21
|
27
|
"
|
22
|
28
|
|
23
|
29
|
|
24
|
30
|
TOOLS="
|
25
|
31
|
evolution
|
26
|
32
|
gnuplot
|
27
|
|
-gnome-boxes
|
28
|
33
|
gvncviewer
|
29
|
34
|
texlive-binaries texlive-latex-extra texlive-lang-german texlive-fonts-recommended texstudio
|
30
|
35
|
gimp
|
|
36
|
+kicad kicad-packages3d
|
|
37
|
+openscad freecad
|
31
|
38
|
"
|
32
|
39
|
|
33
|
40
|
PROGRAMMING="
|
|
41
|
+arduino
|
|
42
|
+minicom
|
34
|
43
|
pycodestyle
|
35
|
44
|
virtualenv
|
36
|
|
-python-coverage python3-coverage python-jinja2 python3-jinja2
|
37
|
|
-python-wxtools python3-wxgtk4.0
|
38
|
|
-python3-evdev python3-serial
|
39
|
|
-python3-sphinx python3-sphinx-rtd-theme
|
|
45
|
+python3-wxgtk4.0
|
|
46
|
+python3-pip
|
40
|
47
|
meld
|
41
|
|
-retext
|
42
|
48
|
"
|
43
|
49
|
|
44
|
50
|
ALL=$COMMON\ $MULTIMEDIA\ $TOOLS\ $PROGRAMMING
|
|
@@ -52,9 +58,12 @@ echo ---------------------------------------------------------------------------
|
52
|
58
|
case "$response" in
|
53
|
59
|
[yY][eE][sS]|[yY])
|
54
|
60
|
sudo apt-get -y install $ALL
|
|
61
|
+ #
|
|
62
|
+ echo
|
|
63
|
+ echo
|
|
64
|
+ echo You need to enable and start tlp, if you want to have it running.
|
55
|
65
|
;;
|
56
|
66
|
*)
|
57
|
67
|
echo Installation aborted!
|
58
|
68
|
;;
|
59
|
69
|
esac
|
60
|
|
-
|