From 1b82133c076dd356aaa0b62763f46df40f9e80c5 Mon Sep 17 00:00:00 2001 From: Solomon Laing Date: Sun, 29 Aug 2021 14:21:42 +0930 Subject: [PATCH] minor changes --- configure-system | 5 ++++- install-defaults | 2 +- install-dependencies | 4 ++-- install-misc | 2 +- 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/configure-system b/configure-system index 91c36e3..f349302 100755 --- a/configure-system +++ b/configure-system @@ -1,3 +1,6 @@ #!/bin/sh -# configure extra system things like lightdm, etc. \ No newline at end of file +# configure extra system things like lightdm, etc. +# also set shell to fish + +# set up correct xmonad.sh e.g. if on laptop, set a copy that only has one xmobar? \ No newline at end of file diff --git a/install-defaults b/install-defaults index 6516f3e..23a77b9 100755 --- a/install-defaults +++ b/install-defaults @@ -48,7 +48,7 @@ total_failures=$((${#failures[@]})) if [ $total_failures -gt 0 ]; then echo "Some of the programs failed to install..." - echo "$failures" + echo -e "$failures" echo "Please manually rectify this and then rerun this setup with: ./setup defaults" exit 1 else diff --git a/install-dependencies b/install-dependencies index e7e3ed5..57547c9 100755 --- a/install-dependencies +++ b/install-dependencies @@ -54,7 +54,7 @@ for dependency in $dependencies do clear sudo -v - if ! yay -Qi $dependency &> /dev/null; then + if ! yay -Qi $dependency &> /dev/null; then #TODO: check whether this works as I'm expecting... echo "Installing $dependency and it's dependencies..." yay -S --noconfirm $dependency fi @@ -85,7 +85,7 @@ total_failures=$((${#failures[@]})) if [ $total_failures -gt 0 ]; then echo "Some of the programs failed to install..." - echo "$failures" + echo -e "$failures" echo "Please manually rectify this and then rerun this setup with: ./setup deps" exit 1 else diff --git a/install-misc b/install-misc index 9398f9e..3c71bcc 100755 --- a/install-misc +++ b/install-misc @@ -48,7 +48,7 @@ total_failures=$((${#failures[@]})) if [ $total_failures -gt 0 ]; then echo "Some of the programs failed to install..." - echo "$failures" + echo -e "$failures" echo "Please manually rectify this and then rerun this setup with: ./setup misc" exit 1 else