New Entity AI



dugout-> section_id_custom.dugout



Define shortcuts that bind custom methods, function, or aliases to dugout


            
 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
#!/bin/sh
###############################################################################
## COPYRIGHT (C) 2020-2026 NEW ENTITY OPERATIONS INC. ALL RIGHTS RESERVED
## INSTANCE: shortcut_id.dugout
## MODIFIED: 2026/04/20
## OVERVIEW: Define custom shortcuts unique to your system
###############################################################################
## navigation_methods_special.dugout: If you need to bind a custom alias to
## a custom location/resource, use the following method
###############################################################################
## Bind by alias 1->N
## alias <BOUND_CONTEXT>="<BOUND_METHOD>"

###############################################################################
## Extra Program Functionality: Shortcuts sourced from the community
## by default, these are not included, but the wrappers are provided.
## These scripts go in Z_community_scripts.dugout.
## If you are implementing code that you got from an LLM, pulled from google,
## saw on stack overflow, etc - it needs to be put within Z_community_scripts
## so you don't contaminate the copyright status of your instance.
## To be clear, only code that was written by you is owned by you, all other
## code is "community-code" and although it can be used, it cannot be claimed!
###############################################################################
## Enumerate supported colors
alias availablecolors='community_available_colors'

## Python clean .pyc, __pycache__, and more
alias cleanbranchpython='community_clean_python_current_dir'

## definitions: optional program - sdcv extension is requried
alias def='community_define_word'
alias define='community_define_word'

## Graphics Check: Card 0
alias graphics0='community_graphics_zero'

## View all the possible emulator colors in your interface
alias interfacecolors='community_interface_colors'

## network activity
## View Rejected packets: Moved to the community branch. Without it, this won't
## work
alias rejected='community_view_I_O_journal'

## List the available terminal capabilities
alias termcapabilities='community_term_capabilities'

## webcam - source the webcam modules
alias webcamup='SOURCE_WEBCAM'