|
@@ -0,0 +1,81 @@
|
|
1
|
+#!/bin/sh
|
|
2
|
+#
|
|
3
|
+
|
|
4
|
+#
|
|
5
|
+# Additional Packages
|
|
6
|
+COMMON="
|
|
7
|
+zsh zsh-syntax-highlighting zsh-autosuggestions
|
|
8
|
+linux-headers
|
|
9
|
+which tmux
|
|
10
|
+neofetch
|
|
11
|
+powerline powerline-fonts powerline-vim
|
|
12
|
+cinnamon gnome-terminal xorg gdm mate-icon-theme-faenza
|
|
13
|
+keepass xdotool
|
|
14
|
+tlp tlp-rdw
|
|
15
|
+sshfs curlftpfs
|
|
16
|
+"
|
|
17
|
+
|
|
18
|
+MULTIMEDIA="
|
|
19
|
+jack2
|
|
20
|
+"
|
|
21
|
+_="ffmpeg
|
|
22
|
+kodi kodi-pvr-hts
|
|
23
|
+spotify-client
|
|
24
|
+photocollage
|
|
25
|
+ardour calf-plugins eq10q fluid-soundfont-gm fluid-soundfont-gs guitarix-ladspa swh-plugins
|
|
26
|
+ubuntustudio-controls carla
|
|
27
|
+sonata elisa obs-studio kdenlive
|
|
28
|
+gxtuner
|
|
29
|
+lame
|
|
30
|
+"
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+TOOLS="
|
|
34
|
+firefox evolution
|
|
35
|
+"
|
|
36
|
+_="
|
|
37
|
+gnuplot
|
|
38
|
+gvncviewer
|
|
39
|
+texlive-binaries texlive-latex-extra texlive-lang-german texlive-fonts-recommended texstudio
|
|
40
|
+gimp
|
|
41
|
+kicad kicad-packages3d
|
|
42
|
+openscad freecad
|
|
43
|
+"
|
|
44
|
+
|
|
45
|
+PROGRAMMING="
|
|
46
|
+python-pip
|
|
47
|
+meld
|
|
48
|
+"
|
|
49
|
+_="arduino patchelf libserialport0
|
|
50
|
+minicom
|
|
51
|
+pycodestyle
|
|
52
|
+virtualenv
|
|
53
|
+python3-wxgtk4.0
|
|
54
|
+python3-pip
|
|
55
|
+meld
|
|
56
|
+"
|
|
57
|
+
|
|
58
|
+ALL=$COMMON\ $MULTIMEDIA\ $TOOLS\ $PROGRAMMING
|
|
59
|
+
|
|
60
|
+echo The followin packages and their required depending packages will be installed:
|
|
61
|
+echo ------------------------------------------------------------------------------
|
|
62
|
+echo $ALL
|
|
63
|
+echo ------------------------------------------------------------------------------
|
|
64
|
+read -r -p "Are you sure? [y/N] " response
|
|
65
|
+echo ------------------------------------------------------------------------------
|
|
66
|
+case "$response" in
|
|
67
|
+ [yY][eE][sS]|[yY])
|
|
68
|
+ pacman --needed -S $ALL
|
|
69
|
+ #
|
|
70
|
+ echo
|
|
71
|
+ echo You might want to execute the following commands:
|
|
72
|
+ echo -------------------------------------------------
|
|
73
|
+ echo systemctl enable gdm
|
|
74
|
+ echo systemctl enable NetworkManager
|
|
75
|
+ echo
|
|
76
|
+ echo and reboot the system...
|
|
77
|
+ ;;
|
|
78
|
+ *)
|
|
79
|
+ echo Installation aborted!
|
|
80
|
+ ;;
|
|
81
|
+esac
|