putting "clear" into start-up scripts causes terminal to crash on start-up. #755
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
I put "clear" into the start-up scripts box in settings, and now the terminal crashes immediately on start-up. Deleting and reinstalling didn't work. How do I fix this?
clear, ctrl-l is not a script that can be launched at startup?
That's because the box is what to run instead of the shell. So what's happening is instead of running
bash
, CRT is runningclear
and then exiting immediately. So another use would be butting something likezsh
orfish
in there if you wanted CRT to use those shells instead of your default.From the terminal, run with default settings using
cool-retro-term --default-settings
. That should stop it from crashing.Then, if you want the terminal to clear, you could either add it to
~/.bashrc
or create a new bash configuration file and run it in CRT by changing that setting tobash --rcfile myconfigfile
.