-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #81 from SkwalExe/troubleshooting
Add troubleshooting instructions in the documentation
- Loading branch information
Showing
10 changed files
with
64 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Color Issues ❗ {#color-issues} | ||
|
||
**In good conditions, the app should use 24-bit colors which looks like this:** | ||
|
||
![Normal colors](./normal-colors.png) | ||
|
||
However, it is possible that when you open the app, the colors are not displaying correctly. In this case, it can look something like this if only 4-bits ANSI colors are used: | ||
|
||
![Color issue 1](./color-issue1.png) | ||
|
||
It can also look like this if only 8-bits ANSI colors are used : | ||
|
||
![Color issue 2](./color-issue2.png) | ||
|
||
|
||
If the colors are not displaying correctly, ensure that your terminal supports 24-bit colors (truecolor). You can verify this by copying and pasting the following command into your terminal: | ||
|
||
|
||
```bash | ||
curl -sLo- https://raw.githubusercontent.com/SkwalExe/fractalistic/main/test-truecolor.sh | bash | ||
``` | ||
|
||
> Please note that running `curl ... | bash` commands can be dangerous and is generally considered a bad practice unless you are certain that the script originates from a trustworthy source. | ||
You should see smooth output similar to the screenshot below. If not, consider updating your terminal or switching to a more modern terminal that supports 24-bit colors. | ||
|
||
![Preview](./truecolor.png) | ||
|
||
If your terminal supports 24-bit colors but the colors are still not displaying correctly, you might need to set the following environment variable when running the app: | ||
|
||
```bash | ||
COLORTERM=truecolor fractalistic | ||
``` | ||
|
||
Additionally, consider adding this to your `~/.bashrc` or `~/.zshrc` to make the change permanent: | ||
|
||
```bash | ||
export COLORTERM=truecolor | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters