mirror of
https://github.com/lihop/godot-xterm.git
synced 2024-11-10 04:40:25 +01:00
39702646dc
Adds a globally unique namespace `GDXterm` that can be used to conveniently access scripts.
7 lines
105 B
GDScript
7 lines
105 B
GDScript
extends GDXterm.Terminal
|
|
|
|
onready var pty = $PTY
|
|
|
|
|
|
func _ready():
|
|
pty.fork(OS.get_environment("SHELL"))
|