Browse Source

mint 21 adaptions

84582af
Dirk Alders 2 years ago
parent
commit
7fd8bc42a4
2 changed files with 21 additions and 11 deletions
  1. 18
    9
      apt-extend-mint
  2. 3
    2
      init_homepath

+ 18
- 9
apt-extend-mint View File

5
 # Additional Packages
5
 # Additional Packages
6
 COMMON="
6
 COMMON="
7
 joe git tmux
7
 joe git tmux
8
+synaptic
9
+owncloud-client
8
 keepass2 xdotool
10
 keepass2 xdotool
11
+tlp tlp-rdw
9
 brasero
12
 brasero
10
 sshfs curlftpfs openssh-server
13
 sshfs curlftpfs openssh-server
11
 fonts-powerline powerline python3-powerline python3-powerline-gitstatus
14
 fonts-powerline powerline python3-powerline python3-powerline-gitstatus
12
-lib32stdc++6
13
 "
15
 "
14
 
16
 
15
 MULTIMEDIA="
17
 MULTIMEDIA="
17
 kodi kodi-pvr-hts
19
 kodi kodi-pvr-hts
18
 spotify-client
20
 spotify-client
19
 photocollage
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
 TOOLS="
30
 TOOLS="
25
 evolution
31
 evolution
26
 gnuplot
32
 gnuplot
27
-gnome-boxes
28
 gvncviewer
33
 gvncviewer
29
 texlive-binaries texlive-latex-extra texlive-lang-german texlive-fonts-recommended texstudio
34
 texlive-binaries texlive-latex-extra texlive-lang-german texlive-fonts-recommended texstudio
30
 gimp
35
 gimp
36
+kicad kicad-packages3d
37
+openscad freecad
31
 "
38
 "
32
 
39
 
33
 PROGRAMMING="
40
 PROGRAMMING="
41
+arduino
42
+minicom
34
 pycodestyle
43
 pycodestyle
35
 virtualenv
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
 meld
47
 meld
41
-retext
42
 "
48
 "
43
 
49
 
44
 ALL=$COMMON\ $MULTIMEDIA\ $TOOLS\ $PROGRAMMING
50
 ALL=$COMMON\ $MULTIMEDIA\ $TOOLS\ $PROGRAMMING
52
 case "$response" in
58
 case "$response" in
53
     [yY][eE][sS]|[yY]) 
59
     [yY][eE][sS]|[yY]) 
54
         sudo apt-get -y install $ALL
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
         echo Installation aborted!
67
         echo Installation aborted!
58
         ;;
68
         ;;
59
 esac
69
 esac
60
-

+ 3
- 2
init_homepath View File

1
 #!/bin/sh
1
 #!/bin/sh
2
 #
2
 #
3
 
3
 
4
-BASE_FOLDERS="data Downloads media_images Videos C64"
4
+BASE_FOLDERS="Downloads media_images Videos C64"
5
 VIP_FOLDERS="prj prj/Arduino Schreibtisch"
5
 VIP_FOLDERS="prj prj/Arduino Schreibtisch"
6
 
6
 
7
 
7
 
17
 case "$response" in
17
 case "$response" in
18
     [yY][eE][sS]|[yY]) 
18
     [yY][eE][sS]|[yY]) 
19
         for folder in $BASE_FOLDERS; do
19
         for folder in $BASE_FOLDERS; do
20
-            rm -rf $HOME/`basename $folder`; ln -s /usr/data/$USER/$folder $HOME
20
+            rm -rf $HOME/`basename $folder`; ln -s /usr/data/$USER/local/$folder $HOME
21
         done
21
         done
22
+        rm -rf $HOME/data; ln -s /usr/data/$USER/data data
22
         for folder in $VIP_FOLDERS; do
23
         for folder in $VIP_FOLDERS; do
23
             rm -rf $HOME/`basename $folder`; ln -s /usr/data/$USER/data/$folder $HOME
24
             rm -rf $HOME/`basename $folder`; ln -s /usr/data/$USER/data/$folder $HOME
24
         done
25
         done

Loading…
Cancel
Save