minor changes
This commit is contained in:
parent
20d25a0be2
commit
1b82133c07
@ -1,3 +1,6 @@
|
||||
#!/bin/sh
|
||||
|
||||
# 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?
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user