From a4b7a8a8e65e26e59d44de8be233541125e2fffc Mon Sep 17 00:00:00 2001 From: epi Date: Sun, 25 Oct 2020 07:58:51 -0500 Subject: [PATCH] updated nix install script --- install-nix.sh | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/install-nix.sh b/install-nix.sh index 7a68fd3..de0786e 100755 --- a/install-nix.sh +++ b/install-nix.sh @@ -37,16 +37,17 @@ elif [[ "$(expr substr $(uname -s) 1 5)" == "Linux" ]]; then rm "${LIN64_ZIP}" fi - if [[ $(lsb_release -d) =~ [Kk]ali ]]; then - echo "[=] Found Kali, installing Noto Emoji Font" - mkdir -p ~/.fonts - pushd ~/.fonts 2>&1 >/dev/null - curl -sLO "${EMOJI_URL}" - unzip -o "${EMOJI_ZIP}" >/dev/null - rm "${EMOJI_ZIP}" - popd 2>&1 >/dev/null - echo "[+] Noto Emoji Font installed" - fi + echo "[=] Installing Noto Emoji Font" + mkdir -p ~/.fonts + pushd ~/.fonts 2>&1 >/dev/null + + curl -sLO "${EMOJI_URL}" + + unzip -o "${EMOJI_ZIP}" >/dev/null + rm "${EMOJI_ZIP}" + + popd 2>&1 >/dev/null + echo "[+] Noto Emoji Font installed" fi chmod +x ./feroxbuster