Do you mean add BTG to WTM auto switch ?
If so, you can do it easily.
Add BTG to your 3main in the appropriate location:
if [ $COIN == "BTG" ]
then
if [ $EWBF_VERSION == "3_3" ]
then
HCD='/home/m1/zec/v3_3/miner'
fi
if [ $EWBF_VERSION == "3_4" ]
then
HCD='/home/m1/zec/v3_4/miner'
fi
BTGADDR="$BTG_ADDRESS.$BTG_WORKER"
if [ $ZM_or_EWBF == "ZM" ]
then
HCD='/home/m1/zec/zm/5_4/zm_miner'
screen -dmSL miner $HCD --server $BTG_POOL --user $BTGADDR --pass $MINER_PWD --port $BTG_PORT ;
fi
if [ $ZM_or_EWBF == "EWBF" ]
then
screen -dmSL miner $HCD --eexit 3 --fee $EWBF_PERCENT --pec --server $BTG_POOL --user $BTGADDR --pass $MINER_PWD --port $BTG_PORT ;
fi
if [ $LOCALorREMOTE == "LOCAL" ]
then
screen -r miner
fi
BITCOIN="theGROUND"
while [ $BITCOIN == "theGROUND" ]
do
sleep 60
done
fi
change this line to your dstm latest version in /home/m1/zec/zm/:
HCD='/home/m1/zec/zm/5_4/zm_miner'
Add BTG to your 1bash in coin details location:
#BTG
BTG_WORKER="$WORKERNAME"
BTG_ADDRESS="Your_mining_pool_hub_username"
BTG_POOL="europe.equihash-hub.miningpoolhub.com"
BTG_PORT="20595"
in 1bash :
WTM_AUTO_SWITCH_COINS="ZEC;ZEN;BTG" ### add any other coins you want : "ZEC;ETH;ETC;XMR"
restart PAPAMPI_WTM and 3main or reboot the rig:
pkill -f 3main
pkill -f PAPAMPI_WTM
bash /home/m1/PAPAMPI_WTM &
[