Ver código fonte

raspi extend script added

84582af
Dirk Alders 1 ano atrás
pai
commit
bb3fb18730
1 arquivos alterados com 30 adições e 0 exclusões
  1. 30
    0
      apt-extend-raspi

+ 30
- 0
apt-extend-raspi Ver arquivo

@@ -0,0 +1,30 @@
1
+#!/bin/sh
2
+#
3
+
4
+#
5
+# Additional Packages
6
+COMMON="
7
+zsh zsh-syntax-highlighting zsh-autosuggestions
8
+vim vim-python-jedi vim-autopep8 git tmux
9
+neofetch figlet powerline
10
+"
11
+
12
+ALL=$COMMON
13
+
14
+echo The followin packages and their required depending packages will be installed:
15
+echo ------------------------------------------------------------------------------
16
+echo $ALL
17
+echo ------------------------------------------------------------------------------
18
+read -r -p "Are you sure? [y/N] " response
19
+echo ------------------------------------------------------------------------------
20
+case "$response" in
21
+    [yY][eE][sS]|[yY]) 
22
+        sudo apt-get -y install $ALL
23
+        #
24
+        echo
25
+        echo
26
+        ;;
27
+    *)
28
+        echo Installation aborted!
29
+        ;;
30
+esac

Carregando…
Cancelar
Salvar