Godot Version
4.3
Question
Is OS.create_process() open_console argument implemented on Linux?
if OS.get_name() == "Linux":
var pid = OS.create_process("python3", [Global.SERVER_PATH, "server"], true)
I tried on Windows and the console is showing up as the documentation says, on Linux it just create a process that automatically closes when I quit the game. Is there a way to show the console on Linux?