Search results
Jul 20, 2016 · Blue text with green background indicates that a directory is writable by others apart from the owning user and group, and does not have the sticky bit set (o+w, -t). Stephano Palazzo over at Ask Ubuntu has made this very instructive picture over the different attribute colors: As terdon pointed out, the color settings can be modified via ...
echoc "@{lr}text output in light red" echoc "@{bLGu}text outpus in blue, light green background and underlined" echoc "you @{lr} can @{bLGu} mix @{-a} it all too" echoc -x "ls" #executes ls command and colorizes it automatically to be easy to be seen The automatic colors are configurable. This is an example done with it:
Nov 9, 2015 · First, create a dircolors database file. $ dircolors -p > ~/.dircolors. Then edit it, you probably want to change the STICKY_OTHER_WRITABLE and OTHER_WRITABLE lines to something more pleasant than 34;42 (34 is blue, 42 is green - dircolors -p helpfully includes comments with the color codes listed). Then run.
Dec 13, 2022 · Here, green background with blue foreground is the colour you get in the default configuration of GNU ls with --color (not FreeBSD ls, which should be the /bin/sh of macos) for directories that don't have the sticky bit and are writable by others (than the owner and group-owner).
Feb 11, 2016 · 12. In your Terminal, klick Edit > Profile Preferences > Colors. See the Text and Background Color. Uncheck the Use colors from system theme. And set the Build-in schemes: to: Gray on black. Share. Improve this answer. answered Feb 11, 2016 at 9:24.
Sep 24, 2021 · It's causing the blue on green, which is absolutely not standard. That blue on green is ugly by design: it signals a directory that is world-writable, which is normally rare, but are common on WSL which doesn't use Unix permissions the normal way. This comes from the ow setting in LS_COLORS. Replace ow=34;42 by ow= so that the setting doesn't ...
May 2, 2019 · It really looks best if you set your terminal to green foreground and black background and don't modify the prompt to a green foreground color. I don't know the color code for lime green, so I used green. # terminal with green foreground, black background. # no need to set green foreground/background color. export PS1="\e[1;37m[\u@\W]\$ \e[0m".
Aug 28, 2020 · zsh doesn't change the background nor foreground colour unless you ask it to.. So, if your prompt background is not the default colour, it's because you, or some of the prompt theme or third party customisation extensions you've enabled have configured it to do so.
Mar 25, 2022 · To turn off the status bar: set -g status off. On colors from the manual: message-bg colour. Set status line message background colour, where colour is one of: black, red, green, yellow, blue, magenta, cyan, white, colour0 to colour255 from the 256-colour palette, or default.
Jun 7, 2012 · 0. You can set ls colors manually but I prefer this approach: First of all there is the. dircolors. command. dircolors --print-database > ~/.dir_colors. change the colors inside that file (it is quite self explanatory, and the colors are visualized inside the file) apply the changes: eval $(dircolors ~/.dir_colors)