Creating a Bash-like Terminal

I am attempting to create a bash like terminal. I can use the classic text based form, where you have the larger box above the input box but I want it to more closely resemble a linux terminal. This means continuously entering “commands” and having them saved in the same window. I can’t figure out how to do this or find any good information.

You basically just need to fake it till it looks alright :slight_smile:

Try two text fields first. A small one for commands, a large one to display history etc. The smaller box needs to show previous commands when pressing up-arrow, and both need to have their colours adjusted to look like one big terminal.

History is just a growing list, perhaps with a limit.

Start here if you’re not an expert on the GUI yet:

1 Like

Thank you for this advice. I will start there.