#!/bin/sh
#] 
#] *********************
#] "$d_bin"'starter/pgm_bash_read_eval_print.sh'  - bash interpreter with all sourced [data, func, etc]s
# 13May2025 initial

# for a description of how to use this script in a workSpace, see
#	"$d_bin""starter/base_filMgrTermBrows.sh"

# just put source at wkSpc level scripts, 
#    because for higher up nested sources, workSpace_select not recognized!! (fix that later)
source "$d_bin"'starter/0_workSpace select.sh'
# switch to FIXED Workspace 5 (default, edit to change)
wrkSpc=2
wmctrl -s "$wrkSpc"
echo "pgm_bash_read_eval_print.sh is running in Desktop $wrkSpc+1"


dREPL="$d_bin"'bash read-eval-print loop/'  


start_bash_read_eval_print()
{
	# base_filMgrTermBrows.sh" the Workspace is set by the "start pgm" calling this one
	bash "$goApp"	"$delay_trm"	"terminal"	""					''
	bash "$goApp"	"$delay_brs"	"editRght"	"$dREPL"			'bash read-eval-print notes.txt'
	bash "$goApp"	"$delay_brs"	"editRght"	"$dREPL"			'bash read-eval-print loop.sh'
}  

start_bash_read_eval_print

# enddoc
