From 77e7b38ed8b13d72929fbc91654605e51be34d92 Mon Sep 17 00:00:00 2001 From: FollieHiyuki Date: Sun, 4 Apr 2021 11:46:48 +0300 Subject: [PATCH] setup: add installer for `afetch` --- setup/afetch.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 setup/afetch.sh diff --git a/setup/afetch.sh b/setup/afetch.sh new file mode 100755 index 0000000..a79b1d8 --- /dev/null +++ b/setup/afetch.sh @@ -0,0 +1,11 @@ +#!/bin/sh + +git clone https://github.com/13-CF/afetch +cd afetch || exit 1 + +# Display colors +sed -i '13s/false/true/' src/config.h +make + +mv -fv afetch ~/.local/bin/afetch +cd ..