├── .gitattributes ├── .gitignore ├── LICENSE.md ├── README.md ├── addons └── gdshell │ ├── LICENSE.md │ ├── LOGO_LICENSE.md │ ├── commands │ ├── default_commands │ │ ├── alias.gd │ │ ├── autorun.gd │ │ ├── bool.gd │ │ ├── clear.gd │ │ ├── echo.gd │ │ ├── gdfetch.gd │ │ ├── ls.gd │ │ └── man.gd │ └── plugin_integrations │ │ └── monitor_overlay │ │ └── monitor.gd │ ├── demo │ ├── demo.gd │ └── demo.tscn │ ├── docs │ ├── assets │ │ ├── logo.png │ │ ├── logo.png.import │ │ ├── logo_text.png │ │ ├── logo_text.png.import │ │ ├── preview_gdfetch.png │ │ └── preview_gdfetch.png.import │ └── en │ │ ├── commands │ │ ├── index.md │ │ └── man.md │ │ ├── docs.md │ │ ├── getting_started │ │ ├── introduction.md │ │ ├── step_by_step.md │ │ └── your_first_command.md │ │ ├── references │ │ ├── gdshell_command.md │ │ ├── gdshell_command_db.md │ │ ├── gdshell_command_parser.md │ │ ├── gdshell_command_runner.md │ │ ├── gdshell_main.md │ │ └── gdshell_ui_handler.md │ │ └── tutorials │ │ ├── custom_commands.md │ │ └── gdshell_syntax.md │ ├── gdshell_editor_plugin.gd │ ├── icon.png │ ├── icon.png.import │ ├── plugin.cfg │ ├── scripts │ ├── gdshell_command.gd │ ├── gdshell_command_db.gd │ ├── gdshell_command_parser.gd │ ├── gdshell_command_runner.gd │ ├── gdshell_main.gd │ └── gdshell_ui_handler.gd │ └── ui │ ├── default_ui │ ├── default_ui.gd │ └── default_ui.tscn │ └── fonts │ └── roboto_mono │ ├── LICENSE.txt │ ├── RobotoMono-Bold.ttf │ ├── RobotoMono-Bold.ttf.import │ ├── RobotoMono-BoldItalic.ttf │ ├── RobotoMono-BoldItalic.ttf.import │ ├── RobotoMono-Italic.ttf │ ├── RobotoMono-Italic.ttf.import │ ├── RobotoMono-Regular.ttf │ └── RobotoMono-Regular.ttf.import └── project.godot /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Godot 4+ specific ignores 2 | .godot/ 3 | *.import 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/README.md -------------------------------------------------------------------------------- /addons/gdshell/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/LICENSE.md -------------------------------------------------------------------------------- /addons/gdshell/LOGO_LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/LOGO_LICENSE.md -------------------------------------------------------------------------------- /addons/gdshell/commands/default_commands/alias.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/commands/default_commands/alias.gd -------------------------------------------------------------------------------- /addons/gdshell/commands/default_commands/autorun.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/commands/default_commands/autorun.gd -------------------------------------------------------------------------------- /addons/gdshell/commands/default_commands/bool.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/commands/default_commands/bool.gd -------------------------------------------------------------------------------- /addons/gdshell/commands/default_commands/clear.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/commands/default_commands/clear.gd -------------------------------------------------------------------------------- /addons/gdshell/commands/default_commands/echo.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/commands/default_commands/echo.gd -------------------------------------------------------------------------------- /addons/gdshell/commands/default_commands/gdfetch.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/commands/default_commands/gdfetch.gd -------------------------------------------------------------------------------- /addons/gdshell/commands/default_commands/ls.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/commands/default_commands/ls.gd -------------------------------------------------------------------------------- /addons/gdshell/commands/default_commands/man.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/commands/default_commands/man.gd -------------------------------------------------------------------------------- /addons/gdshell/commands/plugin_integrations/monitor_overlay/monitor.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/commands/plugin_integrations/monitor_overlay/monitor.gd -------------------------------------------------------------------------------- /addons/gdshell/demo/demo.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/demo/demo.gd -------------------------------------------------------------------------------- /addons/gdshell/demo/demo.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/demo/demo.tscn -------------------------------------------------------------------------------- /addons/gdshell/docs/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/docs/assets/logo.png -------------------------------------------------------------------------------- /addons/gdshell/docs/assets/logo.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/docs/assets/logo.png.import -------------------------------------------------------------------------------- /addons/gdshell/docs/assets/logo_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/docs/assets/logo_text.png -------------------------------------------------------------------------------- /addons/gdshell/docs/assets/logo_text.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/docs/assets/logo_text.png.import -------------------------------------------------------------------------------- /addons/gdshell/docs/assets/preview_gdfetch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/docs/assets/preview_gdfetch.png -------------------------------------------------------------------------------- /addons/gdshell/docs/assets/preview_gdfetch.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/docs/assets/preview_gdfetch.png.import -------------------------------------------------------------------------------- /addons/gdshell/docs/en/commands/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/docs/en/commands/index.md -------------------------------------------------------------------------------- /addons/gdshell/docs/en/commands/man.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/docs/en/commands/man.md -------------------------------------------------------------------------------- /addons/gdshell/docs/en/docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/docs/en/docs.md -------------------------------------------------------------------------------- /addons/gdshell/docs/en/getting_started/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/docs/en/getting_started/introduction.md -------------------------------------------------------------------------------- /addons/gdshell/docs/en/getting_started/step_by_step.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/docs/en/getting_started/step_by_step.md -------------------------------------------------------------------------------- /addons/gdshell/docs/en/getting_started/your_first_command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/docs/en/getting_started/your_first_command.md -------------------------------------------------------------------------------- /addons/gdshell/docs/en/references/gdshell_command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/docs/en/references/gdshell_command.md -------------------------------------------------------------------------------- /addons/gdshell/docs/en/references/gdshell_command_db.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/docs/en/references/gdshell_command_db.md -------------------------------------------------------------------------------- /addons/gdshell/docs/en/references/gdshell_command_parser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/docs/en/references/gdshell_command_parser.md -------------------------------------------------------------------------------- /addons/gdshell/docs/en/references/gdshell_command_runner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/docs/en/references/gdshell_command_runner.md -------------------------------------------------------------------------------- /addons/gdshell/docs/en/references/gdshell_main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/docs/en/references/gdshell_main.md -------------------------------------------------------------------------------- /addons/gdshell/docs/en/references/gdshell_ui_handler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/docs/en/references/gdshell_ui_handler.md -------------------------------------------------------------------------------- /addons/gdshell/docs/en/tutorials/custom_commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/docs/en/tutorials/custom_commands.md -------------------------------------------------------------------------------- /addons/gdshell/docs/en/tutorials/gdshell_syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/docs/en/tutorials/gdshell_syntax.md -------------------------------------------------------------------------------- /addons/gdshell/gdshell_editor_plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/gdshell_editor_plugin.gd -------------------------------------------------------------------------------- /addons/gdshell/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/icon.png -------------------------------------------------------------------------------- /addons/gdshell/icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/icon.png.import -------------------------------------------------------------------------------- /addons/gdshell/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/plugin.cfg -------------------------------------------------------------------------------- /addons/gdshell/scripts/gdshell_command.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/scripts/gdshell_command.gd -------------------------------------------------------------------------------- /addons/gdshell/scripts/gdshell_command_db.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/scripts/gdshell_command_db.gd -------------------------------------------------------------------------------- /addons/gdshell/scripts/gdshell_command_parser.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/scripts/gdshell_command_parser.gd -------------------------------------------------------------------------------- /addons/gdshell/scripts/gdshell_command_runner.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/scripts/gdshell_command_runner.gd -------------------------------------------------------------------------------- /addons/gdshell/scripts/gdshell_main.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/scripts/gdshell_main.gd -------------------------------------------------------------------------------- /addons/gdshell/scripts/gdshell_ui_handler.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/scripts/gdshell_ui_handler.gd -------------------------------------------------------------------------------- /addons/gdshell/ui/default_ui/default_ui.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/ui/default_ui/default_ui.gd -------------------------------------------------------------------------------- /addons/gdshell/ui/default_ui/default_ui.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/ui/default_ui/default_ui.tscn -------------------------------------------------------------------------------- /addons/gdshell/ui/fonts/roboto_mono/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/ui/fonts/roboto_mono/LICENSE.txt -------------------------------------------------------------------------------- /addons/gdshell/ui/fonts/roboto_mono/RobotoMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/ui/fonts/roboto_mono/RobotoMono-Bold.ttf -------------------------------------------------------------------------------- /addons/gdshell/ui/fonts/roboto_mono/RobotoMono-Bold.ttf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/ui/fonts/roboto_mono/RobotoMono-Bold.ttf.import -------------------------------------------------------------------------------- /addons/gdshell/ui/fonts/roboto_mono/RobotoMono-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/ui/fonts/roboto_mono/RobotoMono-BoldItalic.ttf -------------------------------------------------------------------------------- /addons/gdshell/ui/fonts/roboto_mono/RobotoMono-BoldItalic.ttf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/ui/fonts/roboto_mono/RobotoMono-BoldItalic.ttf.import -------------------------------------------------------------------------------- /addons/gdshell/ui/fonts/roboto_mono/RobotoMono-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/ui/fonts/roboto_mono/RobotoMono-Italic.ttf -------------------------------------------------------------------------------- /addons/gdshell/ui/fonts/roboto_mono/RobotoMono-Italic.ttf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/ui/fonts/roboto_mono/RobotoMono-Italic.ttf.import -------------------------------------------------------------------------------- /addons/gdshell/ui/fonts/roboto_mono/RobotoMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/ui/fonts/roboto_mono/RobotoMono-Regular.ttf -------------------------------------------------------------------------------- /addons/gdshell/ui/fonts/roboto_mono/RobotoMono-Regular.ttf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/addons/gdshell/ui/fonts/roboto_mono/RobotoMono-Regular.ttf.import -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kubulambula/Godot-GDShell/HEAD/project.godot --------------------------------------------------------------------------------