raspi extend script added
This commit is contained in:
parent
79dc87c707
commit
bb3fb18730
30
apt-extend-raspi
Executable file
30
apt-extend-raspi
Executable file
@ -0,0 +1,30 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
#
|
||||||
|
|
||||||
|
#
|
||||||
|
# Additional Packages
|
||||||
|
COMMON="
|
||||||
|
zsh zsh-syntax-highlighting zsh-autosuggestions
|
||||||
|
vim vim-python-jedi vim-autopep8 git tmux
|
||||||
|
neofetch figlet powerline
|
||||||
|
"
|
||||||
|
|
||||||
|
ALL=$COMMON
|
||||||
|
|
||||||
|
echo The followin packages and their required depending packages will be installed:
|
||||||
|
echo ------------------------------------------------------------------------------
|
||||||
|
echo $ALL
|
||||||
|
echo ------------------------------------------------------------------------------
|
||||||
|
read -r -p "Are you sure? [y/N] " response
|
||||||
|
echo ------------------------------------------------------------------------------
|
||||||
|
case "$response" in
|
||||||
|
[yY][eE][sS]|[yY])
|
||||||
|
sudo apt-get -y install $ALL
|
||||||
|
#
|
||||||
|
echo
|
||||||
|
echo
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo Installation aborted!
|
||||||
|
;;
|
||||||
|
esac
|
Loading…
x
Reference in New Issue
Block a user