No colors in ls, etc.
#5258
Replies: 4 comments 7 replies
-
|
Hi When I run How could I set that alias permanent to be run at startup and tabby uses it by default in all tabs? Thanks |
Beta Was this translation helpful? Give feedback.
-
|
I don't see colors anywhere on MacOS Ventura, I do see color in ls when running ls --color but my username is not colored as it should be according the the color schemes I'm using, I have read similar posts but have not actually found an answer as to how to solve this. Can you provide some insight on how to get color working? I'm using the default shell ZSH but also tried Bash and it's not colored either. I don't see any of the styling provided by the color schemes at all, everything is completely plain text :( |
Beta Was this translation helpful? Give feedback.
-
|
I stumbled upon this discussion because somehow my terminal color doesn't work even when using |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.




Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
What is happening?
Color themes can only change colors of colored text that is printed to the terminal, not colorize text that is originally black and white.
How to make sure that a color scheme works
You can print a test table with various colours using
msgcat --color=teston UNIX, or the following bash/zsh oneliner ifmsgcatisn't installed:A similar test script for PowerShell:
How to enable colorized directory listings
on macOS
By default,
lsoutput on macOS is black and white.You can re-enable output colorization by adding
export CLICOLOR=1to the end of your~/.zshrcfile (permanently) or by runningexport CLICOLOR=1in your shell (temporarily).on Linux
Alias
lstols --color=auto, e.g:Beta Was this translation helpful? Give feedback.
All reactions