From a39312cda9489148c10e681e0b4857f7287ebafc Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Sun, 28 Oct 2018 10:58:11 +0000 Subject: [PATCH] remove deprecated setup-home.sh --- home/bin/setup-home.sh | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100755 home/bin/setup-home.sh diff --git a/home/bin/setup-home.sh b/home/bin/setup-home.sh deleted file mode 100755 index b0247ad..0000000 --- a/home/bin/setup-home.sh +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/sh -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" -fc-cache -vf || true -pip3 install --user powerline-status