jonmbake / react-terminal-ui

A terminal react component with support for light and dark modes.
https://jonmbake.github.io/react-terminal-ui/demo/
MIT License
205 stars 30 forks source link

Make terminal disabled to typing #26

Closed MeyerBuaharon closed 1 year ago

MeyerBuaharon commented 1 year ago

Hello, love this package, abuse it in my projects haha.

just wondering, is there a way to make the terminal disable to writing. like only output, not even being able to have the input marker when focusing on the terminal div.

MeyerBuaharon commented 1 year ago

Removing the onInput solved it.

<Terminal
  name="React Terminal Usage Example"
  colorMode={ColorMode.Dark}
  lineData={terminalLineData}
 // onInput={onInput}
// startingInputValue={history}
prompt=" "
/>