New Entity AI



dugout-> shellrc_root.dugout



Source the default root shell ENVIRONMENT. Also available: Generic-shell environments shellrc_standard.

            
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
#!/bin/sh
###############################################################################
## COPYRIGHT (C) 2020-2026 NEW ENTITY OPERATIONS INC. ALL RIGHTS RESERVED
## INSTANCE: shellrc_root.dugout
## MODIFIED: 2026/04/20
## OVERVIEW:  "${PATH_DUGOUT}"/shellrc_root.dugout should be sourced by each
## individual user account in their home directory as needed, but it can
## also be ignored in favor of sourcing shellrc_standard.dugout.
## If you're customizing additional .dugout locations, you can
## add them as a source conditionally with: . "${PATH_DUGOUT}"/**
## as needed below
###############################################################################
### Requried sourced files
###############################################################################

### Always put ALL_static_variables.dugout first
### All Static Variables: Set system variables paths that can be accessed
### by all users
#if [ -f "${PATH_DUGOUT}"/static_variables.dugout ]; then
# . "${PATH_DUGOUT}"/static_variables.dugout
#fi
. "${PATH_DUGOUT}/static_variables.dugout"

### Highlight keywords by defining a colorPool and triggers
#if [ -f "${PATH_DUGOUT}"/highlight_keyword.dugout ]; then
# . "${PATH_DUGOUT}"/highlight_keyword.dugout
#fi
. "${PATH_DUGOUT}/highlight_keyword.dugout"

### Emulator art: provide visual emulator elements
#if [ -f "${PATH_DUGOUT}"/emulator_art.dugout ]; then
# . "${PATH_DUGOUT}"/emulator_art.dugout
#fi
. "${PATH_DUGOUT}/emulator_art.dugout"

### Always put System paths first
### System paths: Set system paths that can be accessed by all users
#if [ -f "${PATH_DUGOUT}"/system_paths.dugout ]; then
# . "${PATH_DUGOUT}"/system_paths.dugout
#fi
. "${PATH_DUGOUT}/system_paths.dugout"

### Open methods are provided to everyone
#if [ -f "${PATH_DUGOUT}"/open_methods.dugout ]; then
# . "${PATH_DUGOUT}"/open_methods.dugout
#fi
. "${PATH_DUGOUT}/open_methods.dugout"

### Shortcut Definitions
#if [ -f "${PATH_DUGOUT}"/shortcut_id.sh ]; then
# . "${PATH_DUGOUT}"/shortcut_id.dugout
#fi
. "${PATH_DUGOUT}/shortcut_id.dugout"

### Pretty things: Make things look pretty in your environment
#if [ -f ${PATH_DUGOUT}/_pretty_things.dugout ]; then
# . "${PATH_DUGOUT}"/_pretty_things.dugout
#fi
. "${PATH_DUGOUT}/_pretty_things.dugout"

### Lastly, modify your environment with custom settings before sourcing
### general dugout files

### Use custom environment settings
#if [ -f "${PATH_DUGOUT}"/program_enhance_shell.dugout ]; then
# . "${PATH_DUGOUT}"/program_enhance_shell.dugout
#fi
. "${PATH_DUGOUT}/program_enhance_shell.dugout"

###############################################################################
### Additonal sourced Files
###############################################################################

### Define your shell environment
#if [ -f "${PATH_DUGOUT}"/shell_display_root.dugout ]; then
#. "${PATH_DUGOUT}"/shell_display_root.dugout
#fi
. "${PATH_DUGOUT}/shell_display_root.dugout"

### Version: define your installation environment version
#if [ -f "${PATH_DUGOUT}"/version_id.dugout ]; then
#. "${PATH_DUGOUT}"/version_id.dugout
#fi
. "${PATH_DUGOUT}/version_id.dugout"

### Editor: define your default editor
#if [ -f "${PATH_DUGOUT}"/editor.dugout ]; then
# . "${PATH_DUGOUT}"/editor.dugout
#fi
. "${PATH_DUGOUT}/editor.dugout"

### Define an Operator
#if [ -f "${PATH_DUGOUT}"/operator_id.dugout ]; then
# . "${PATH_DUGOUT}"/operator_id.dugout
#fi
. "${PATH_DUGOUT}/operator_id.dugout"

### VPN id: Define available VPN routines and access points
#if [ -f "${PATH_DUGOUT}"/vpn_id.dugout ]; then
# . "${PATH_DUGOUT}"/vpn_id.dugout
#fi
. "${PATH_DUGOUT}/vpn_id.dugout"

### Shortcut Definitions: Custom (Non-standard and unique to your setup)
#if [ -f "${PATH_DUGOUT}"/shortcut_id_custom.sh ]; then
# . "${PATH_DUGOUT}"/shortcut_id_custom.dugout
#fi
. "${PATH_DUGOUT}/shortcut_id_custom.dugout"

### Manifest: define your TRINE environment helpers
#if [ -f "${PATH_DUGOUT}"/trine_manifest.dugout ]; then
# . "${PATH_DUGOUT}"/trine_manifest.dugout
#fi
. "${PATH_DUGOUT}/trine_manifest.dugout"

### Disk Operations: Automate archive tasks and disk operations
#if [ -f "${PATH_DUGOUT}"/disk_ops_id.dugout ]; then
# . "${PATH_DUGOUT}"/disk_ops_id.dugout
#fi
. "${PATH_DUGOUT}/disk_ops_id.dugout"

### Disk Operations: Automate custom archive tasks and disk operations
#if [ -f "${PATH_DUGOUT}"/disk_ops_id_custom.dugout ]; then
# . "${PATH_DUGOUT}"/disk_ops_id_custom.dugout
#fi
. "${PATH_DUGOUT}/disk_ops_id_custom.dugout"

### MSDOS Operations
#if [ -f "${PATH_DUGOUT}"/msdos_ops_id.dugout ]; then
# . "${PATH_DUGOUT}"/msdos_ops.dugout
#fi
. "${PATH_DUGOUT}/msdos_ops.dugout"

### Navigation Methods
#if [ -f "${PATH_DUGOUT}"/navigation_methdos.dugout ]; then
# . "${PATH_DUGOUT}"/navigation_methods.dugout
#fi
. "${PATH_DUGOUT}/navigation_methods.dugout"

### Navigation Methods Lockerlinks
#if [ -f "${PATH_DUGOUT}"/navigation_methdos_lockerlinks.dugout ]; then
# . "${PATH_DUGOUT}"/navigation_methods_lockerlinks.dugout
#fi
. "${PATH_DUGOUT}/navigation_methods_lockerlinks.dugout"

### Navigation Methods Special
#if [ -f "${PATH_DUGOUT}"/navigation_methdos_special.dugout ]; then
# . "${PATH_DUGOUT}"/navigation_methods_special.dugout
#fi
. "${PATH_DUGOUT}/navigation_methods_special.dugout"

### Network Operations
#if [ -f "${PATH_DUGOUT}"/network_ops_id.dugout ]; then
# . "${PATH_DUGOUT}"/network_ops_id.dugout
#fi
. "${PATH_DUGOUT}/network_ops_id.dugout"

### Operator: Update
#if [ -f "${PATH_DUGOUT}"/operator_update_instance.dugout ]; then
# . "${PATH_DUGOUT}"/operator_update_instance.dugout
#fi
. "${PATH_DUGOUT}/operator_update_instance.dugout"

### Program Enhancement: Add features to user-space programs
#if [ -f "${PATH_DUGOUT}"/program_enhance.dugout ]; then
# . "${PATH_DUGOUT}"/program_enhance.dugout
#fi
. "${PATH_DUGOUT}/program_enhance.dugout"

### Program Environment Setup
#if [ -f "${PATH_DUGOUT}"/program_env.dugout ]; then
# . "${PATH_DUGOUT}"/program_env.dugout
#fi
. "${PATH_DUGOUT}/program_env.dugout"

### Local Proxy Setup: Set local proxy environment variables
#if [ -f "${PATH_DUGOUT}"/program_env_wn.dugout ]; then
# . "${PATH_DUGOUT}"/program_env_wn.dugout
#fi
. "${PATH_DUGOUT}/proxy_env_wn.dugout"

### Special Proxy Setup: Override: When Needed
#if [ -f "${PATH_DUGOUT}"/proxy_special_env_wn.dugout ]; then
# . "${PATH_DUGOUT}"/proxy_special_env_wn.dugout
#fi
. "${PATH_DUGOUT}/proxy_special_env_wn.dugout"

### System blueprints: Establish ownership blueprints for your system
#if [ -f "${PATH_DUGOUT}"/system_blueprints.dugout ]; then
# . "${PATH_DUGOUT}"/system_blueprints.dugout
#fi
. "${PATH_DUGOUT}/system_blueprints.dugout"

### Run Program: Helpers to run internal programs installation
#if [ -f "${PATH_DUGOUT}"/run_program.dugout ]; then
# . "${PATH_DUGOUT}"/run_program.dugout
#fi
. "${PATH_DUGOUT}/run_program.dugout"

### Filters: Provide filters to environment operations
#if [ -f "${PATH_DUGOUT}"/filters.dugout ]; then
# . "${PATH_DUGOUT}"/filters.dugout
#fi
. "${PATH_DUGOUT}/filters.dugout"

### Modifiers: Provide system program modifiers to the environment
#if [ -f "${PATH_DUGOUT}"/modifiers.dugout ]; then
# . "${PATH_DUGOUT}"/modifiers.dugout
#fi
. "${PATH_DUGOUT}/modifiers.dugout"

### connection_*: connect and perform tasks on provided endpoints
#if [ -f "${PATH_DUGOUT}"/connection_mainframe.dugout ]; then
#. "${PATH_DUGOUT}"/connection_mainframe.dugout
#fi
. "${PATH_DUGOUT}/connection_mainframe.dugout"

###############################################################################
## graphics: virtual
###############################################################################

### Graphics: Virtual - wayland: Set up virtual graphical-interfaces
#if [ -f "${PATH_DUGOUT}"/graphics_virtual_wayland.dugout ]; then
# . "${PATH_DUGOUT}"/graphics_virtual_wayland.dugout
#fi
. "${PATH_DUGOUT}/graphics_virtual_wayland.dugout"

### Graphics: Virtual - xwindow: Set up virtual graphical-interfaces
#if [ -f "${PATH_DUGOUT}"/graphics_virtual_xindow.dugout ]; then
# . "${PATH_DUGOUT}"/graphics_virtual_xwindow.dugout
#fi
#. "${PATH_DUGOUT}/graphics_virtual_xwindow.dugout"

###############################################################################
## community: Not included, but can be sourced by the community
###############################################################################

### Community: Standard, but not included. You can find these scripts within
### various parts of the online community, but licenses may vary
#if [ -f "${PATH_DUGOUT}"/Z_community_scripts.dugout ]; then
# . "${PATH_DUGOUT}"/Z_community_scripts.dugout
#fi
. "${PATH_DUGOUT}/Z_community_scripts.dugout"

###############################################################################
## wrappers: DEM pipeline
###############################################################################

### Wrappers: Determine, Extend, and Modify your environment
### various parts of the online community, but licenses may vary
#if [ -f "${PATH_DUGOUT}"/wrappers.dugout ]; then
# . "${PATH_DUGOUT}"/wrappers.dugout
#fi
. "${PATH_DUGOUT}/wrappers.dugout"

###############################################################################
## linker
###############################################################################

### linker->trine: Internal Meta-explorer
. "${PATH_DUGOUT}/linker/trinechan.linker"

### linker-> explorer rig definitions
. "${PATH_DUGOUT}/linker/explorer.linker"

###############################################################################
## generic alias
###############################################################################
## generic sudo alias
#alias sudo='sudo '