Accidentally Crashed the App
So I was writing a lot of config commands yesterday and got to experimenting. I tried removing the drop shadows from the input and output text and it crashed the app and I haven't been able to use it properly since.
My command lines were "config -set input_shadow_color false" and "config -set output_shadow_color false". Not sure if these are invalid command lines, for I am new to Linux-based coding/coding in general. I could use some help and if anyone has an answer, please get back to me.
Thanks
These two options don't accept boolean values. Instead you should feed them color codes. Please have a look at the wiki ... https://github.com/fAndreuzzi/TUI-ConsoleLauncher/wiki/Customize-T_UI
input_shadow_color | color | #00000000 | The outline color of the input field output_shadow_color | color | #00000000 | The outline color of the output field
To correct the values, use a text editor app to open the file t-ui/theme.xml and edit them manually.
You can find more information about valid color codes here ... https://github.com/fAndreuzzi/TUI-ConsoleLauncher/wiki/Defining-Colors
Good luck!