mirror of
https://github.com/lihop/godot-xterm.git
synced 2024-11-10 04:40:25 +01:00
7 lines
142 B
GDScript
7 lines
142 B
GDScript
extends "res://addons/godot_xterm/nodes/terminal/terminal.gd"
|
|
|
|
onready var pty = $PTY
|
|
|
|
|
|
func _ready():
|
|
pty.fork(OS.get_environment("SHELL"))
|