mirror of
https://github.com/openoms/joininbox.git
synced 2026-08-18 13:08:52 +02:00
as suggested in: https://github.com/openoms/joininbox/issues/28 the main menu "Exit" button now drops to the command line the separate "Exit to the Command Line" option is removed Submenus use the label "Back" inplace of "Cancel"
127 lines
4 KiB
Bash
Executable file
127 lines
4 KiB
Bash
Executable file
#!/bin/bash
|
|
# YG menu options
|
|
|
|
source /home/joinmarket/_functions.sh
|
|
source /home/joinmarket/joinin.conf
|
|
|
|
# add default value to joinin config if needed
|
|
if ! grep -Eq "^YGwallet=" $joininConfPath; then
|
|
echo "YGwallet=nil" >> $joininConfPath
|
|
fi
|
|
|
|
|
|
# BASIC MENU INFO
|
|
HEIGHT=13
|
|
WIDTH=52
|
|
CHOICE_HEIGHT=20
|
|
TITLE="Yield Generator options"
|
|
MENU=""
|
|
OPTIONS=()
|
|
BACKTITLE="JoininBox GUI"
|
|
|
|
# Basic Options
|
|
OPTIONS+=(\
|
|
MAKER "Run the Yield Generator" \
|
|
JMCONF "YG settings in the joinmarket.cfg" \
|
|
YGLIST "List the past YG activity" \
|
|
NICKNAME "Show the last used counterparty name" \
|
|
SERVICE "Monitor the YG service (INFO)" \
|
|
LOGS "View the last YG logfile (DEBUG)" \
|
|
STOP "Stop the YG service" \
|
|
)
|
|
|
|
CHOICE=$(dialog --clear \
|
|
--backtitle "$BACKTITLE" \
|
|
--title "$TITLE" \
|
|
--ok-label "Select" \
|
|
--cancel-label "Back" \
|
|
--menu "$MENU" \
|
|
$HEIGHT $WIDTH $CHOICE_HEIGHT \
|
|
"${OPTIONS[@]}" \
|
|
2>&1 >/dev/tty)
|
|
|
|
case $CHOICE in
|
|
|
|
MAKER)
|
|
# wallet
|
|
chooseWallet
|
|
# save wallet in conf
|
|
sudo sed -i "s#^YGwallet=.*#YGwallet=$(cat $wallet)#g" $joininConfPath
|
|
# get password
|
|
passwordToFile
|
|
echo "Using the wallet: $(cat $wallet)"
|
|
/home/joinmarket/start.service.sh yg-privacyenhanced $(cat $wallet)
|
|
echo ""
|
|
echo "# started the Yield Generator in the background"
|
|
echo ""
|
|
echo "# showing the systemd status ..."
|
|
sleep 3
|
|
dialog \
|
|
--title "Monitoring the Yield Generator - press CTRL+C to exit" \
|
|
--prgbox "sudo journalctl -fn20 -u yg-privacyenhanced" 30 200
|
|
echo "# returning to the menu..."
|
|
sleep 1
|
|
/home/joinmarket/menu.yg.sh
|
|
;;
|
|
JMCONF)
|
|
/home/joinmarket/install.joinmarket.sh config
|
|
echo "Returning to the menu..."
|
|
sleep 1
|
|
/home/joinmarket/menu.yg.sh
|
|
;;
|
|
YGLIST)
|
|
dialog \
|
|
--title "timestamp cj amount/satoshi my input count my input value/satoshi cjfee/satoshi earned/satoshi confirm time/min notes" \
|
|
--prgbox "column /home/joinmarket/.joinmarket/logs/yigen-statement.csv -t -s ","" 100 140
|
|
echo "# returning to the menu..."
|
|
sleep 1
|
|
/home/joinmarket/menu.yg.sh
|
|
;;
|
|
NICKNAME)
|
|
name=$(ls -t /home/joinmarket/.joinmarket/logs | grep J5 | head -n 1 | cut -c -16)
|
|
whiptail \
|
|
--title "Counterparty name" \
|
|
--msgbox "The last used counterparty name for the Order Book:\n
|
|
$name\n
|
|
Check if active in: https://nixbitcoin.org/obwatcher/
|
|
or use the local Order Book" 12 55
|
|
echo "Returning to the menu..."
|
|
sleep 1
|
|
/home/joinmarket/menu.yg.sh
|
|
;;
|
|
SERVICE)
|
|
dialog \
|
|
--title "Monitoring the Yield Generator" \
|
|
--msgbox "
|
|
Shows the service status with INFO logs using:
|
|
|
|
sudo systemctl status yg-privacyenhanced
|
|
|
|
Press CTRL+C to exit to the command line.
|
|
Use: 'menu' for the JoininBox options." 11 50
|
|
sudo systemctl status yg-privacyenhanced
|
|
;;
|
|
LOGS)
|
|
dialog \
|
|
--title "Monitoring the Yield Generator" \
|
|
--msgbox "
|
|
Will tail the latest YG logfile from:
|
|
|
|
/home/joinmarket/.joinmarket/logs/
|
|
|
|
Press CTRL+C to exit and return to the menu." 10 50
|
|
cd /home/joinmarket/.joinmarket/logs
|
|
ls -t | grep J5 | head -n 1 | xargs tail -fn1000
|
|
echo ""
|
|
echo "Press ENTER to return to menu"
|
|
read key
|
|
cd /home/joinmarket/joinmarket-clientserver/scripts/
|
|
/home/joinmarket/menu.yg.sh
|
|
;;
|
|
STOP)
|
|
stopYG
|
|
echo ""
|
|
echo "Press ENTER to return to the menu..."
|
|
read key
|
|
;;
|
|
esac
|