[setup-home] add alpine compatiblity
This commit is contained in:
parent
7a178e1c13
commit
aed1bec4b7
|
@ -1,4 +1,29 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
set -e
|
set -e
|
||||||
|
if [ -e /etc/alpine-release ]; then
|
||||||
|
distro="alpine"
|
||||||
|
fi
|
||||||
|
echo "Installing basic packages"
|
||||||
|
case $distro in
|
||||||
|
"alpine")
|
||||||
|
sudo apk update
|
||||||
|
sudo apk add \
|
||||||
|
bash \
|
||||||
|
coreutils \
|
||||||
|
git \
|
||||||
|
less \
|
||||||
|
python3 \
|
||||||
|
rxvt-unicode-terminfo \
|
||||||
|
tmux \
|
||||||
|
vim \
|
||||||
|
zsh \
|
||||||
|
zsh-vcs
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo "unknown distribution “${distro}”"
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
echo "Setting up powerline"
|
echo "Setting up powerline"
|
||||||
fc-cache -vf
|
fc-cache -vf || true
|
||||||
|
pip3 install --user powerline-status
|
||||||
|
|
Reference in a new issue