|
@@ -1,7 +1,7 @@
|
|
|
#!/bin/bash
|
|
|
set -e
|
|
|
-Gui=YES #can be Yes No or Only
|
|
|
Version=5.0.0
|
|
|
+Gui=YES #can be Yes No or Only
|
|
|
MadMax=Yes
|
|
|
GigaHorse=Yes
|
|
|
BladeBit=Yes
|
|
@@ -67,6 +67,7 @@ print_centered "| ---| || || _ |"
|
|
|
print_centered "|______|__|__||__||___._|"
|
|
|
echo -n "$(tput sgr0)"
|
|
|
print_centered "Toolkit for Chia v$Version"
|
|
|
+echo ""
|
|
|
if [ $error_flag = 1 ]
|
|
|
then
|
|
|
echo -n "$(tput setaf 1 ;tput blink;tput bold)"
|
|
@@ -76,8 +77,9 @@ then
|
|
|
fi
|
|
|
case $Gui in
|
|
|
YES)
|
|
|
- echo -n "$(tput setaf 11)"
|
|
|
+ echo -n "$(tput setaf 41)"
|
|
|
print_centered "Blockchain wallet + Gui"
|
|
|
+ echo -n "$(tput setaf 42)"
|
|
|
print_centered "Chia Plotting Tools"
|
|
|
echo -n "$(tput sgr0)"
|
|
|
;;
|
|
@@ -88,7 +90,7 @@ NO)
|
|
|
|
|
|
;;
|
|
|
ONLY)
|
|
|
- echo -n "$(tput setaf 11)"
|
|
|
+ echo -n "$(tput setaf 41)"
|
|
|
print_centered "Blockchain wallet Only"
|
|
|
echo -n "$(tput sgr0)"
|
|
|
;;
|
|
@@ -103,20 +105,20 @@ if [ $Gui = "NO" ] || [ $Gui = "YES" ]
|
|
|
then
|
|
|
case $ChiaService in
|
|
|
YES)
|
|
|
- echo -n "$(tput setaf 11)"
|
|
|
+ echo -n "$(tput setaf 43)"
|
|
|
print_centered "Mining service Enabled"
|
|
|
echo -n "$(tput sgr0)"
|
|
|
;;
|
|
|
esac
|
|
|
case $ChiaProxy in
|
|
|
YES)
|
|
|
- echo -n "$(tput setaf 11)"
|
|
|
+ echo -n "$(tput setaf 44)"
|
|
|
print_centered "Hpool x-Proxy Enabled"
|
|
|
echo -n "$(tput sgr0)"
|
|
|
;;
|
|
|
esac
|
|
|
fi
|
|
|
-sleep 3
|
|
|
+sleep 2
|
|
|
if ! [ -d /home/wareck/chia ];then mkdir /home/wareck/chia;fi
|
|
|
}
|
|
|
|