about summary refs log tree commit diff
path: root/bootstrap.sh
diff options
context:
space:
mode:
authorBen Harris <ben@tilde.team>2020-09-29 13:58:53 -0400
committerBen Harris <ben@tilde.team>2020-09-29 13:58:53 -0400
commit3d5219f8150c4b70769b1abd8bbfd41f249cc175 (patch)
tree65da53bc0d87e6fb889670191c34f066afd3b780 /bootstrap.sh
parentc5ab99a07acdaa40b45ca4b3b662e17cb54a5b5d (diff)
remove fzf and lf
Diffstat (limited to 'bootstrap.sh')
-rw-r--r--bootstrap.sh31
1 files changed, 0 insertions, 31 deletions
diff --git a/bootstrap.sh b/bootstrap.sh
deleted file mode 100644
index d16de53..0000000
--- a/bootstrap.sh
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/usr/bin/env bash
-
-DISTRO="$1"
-RELEASE="$2"
-PKGLIST="${DISTRO}.pkglist"
-
-[ -z $DISTRO -o -z $RELEASE ] && \
-    printf "usage: sudo %s <distro> <release>\n" "$0" && exit 1
-
-[[ $(id -u) != 0 ]] && \
-    printf "re-run this as root\n" && exit 1
-
-# make sure we have sources
-printf "deb https://mirror.bhh.sh/syncthing/ syncthing stable\n" \
-    > /etc/apt/sources.list.d/syncthing.list
-printf "deb https://mirror.bhh.sh/weechat/%s %s main \n" "${DISTRO}" "${RELEASE}" \
-    > /etc/apt/sources.list.d/weechat.list
-
-apt update
-apt upgrade -y
-apt full-upgrade -y
-
-apt install -y $(xargs < ${PKGLIST})
-
-
-printf "install makefiles? [y/n]"
-read answer
-
-[[ "$answer" = "y" ]] && \
-    make nuke install
-