From 17b564921464d93d8e532ce64c5f6d797aa72775 Mon Sep 17 00:00:00 2001 From: ITmail-dk <48917593+ITmail-dk@users.noreply.github.com> Date: Tue, 4 Jan 2022 14:02:57 +0100 Subject: [PATCH] fix --- config/polybar/config | 2 +- install-hugo-extended-debian.sh | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 install-hugo-extended-debian.sh diff --git a/config/polybar/config b/config/polybar/config index 68f7e6c..b4e87d7 100644 --- a/config/polybar/config +++ b/config/polybar/config @@ -437,7 +437,7 @@ format-spacing = 1 label-open =  label-open-foreground = ${colors.icon-c1} -label-close =  +label-close = x label-close-foreground = ${colors.icon-c1} label-separator = " " label-separator-foreground = ${colors.foreground-alt} diff --git a/install-hugo-extended-debian.sh b/install-hugo-extended-debian.sh new file mode 100644 index 0000000..8f31554 --- /dev/null +++ b/install-hugo-extended-debian.sh @@ -0,0 +1,21 @@ +#!/bin/bash + +# APT UPDATE & APT UPGRADE +echo "-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-" +echo " " +echo " Hugo Extended v0.91.2 - Install" +echo " " +echo "-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-" + +sudo apt update && sudo apt upgrade -y + +# Install Hugo Extended v0.91.2 + +cd /tmp/ +wget https://github.com/gohugoio/hugo/releases/download/v0.91.2/hugo_extended_0.91.2_Linux-64bit.deb + +echo "Enter your user password, to continue." +sudo apt install -y /tmp/hugo_extended_0.91.2_Linux-64bit.deb + + +read -p "Hugo Extended v0.91.2 Install - ALL DONE - Press a key to Exit" \ No newline at end of file