How to configure the console color scheme in Ubuntu Server 18.04?
1 answer
You can do this by simply editing the .bashrc
that is in your home directory:
$ sudo nano ~/.bashrc
By reference, detailed instructions.
But before making any changes to the color scheme, it is better to make a backup, in case you don’t like something or in another day you want to roll back to the default settings.
Type the command for .bashrc
:
$ sudo cp /etc/bash.bashrc /etc/bash.bashrc.backup
There is also a detailed video instruction from YouTube.
There is an option with changing the command shell, for example fish
.
It will be necessary to install it additionally:
$ sudo apt install fish
Changing the color of the terminal in Ubuntu Server. Serverfault source
- oneI changed the color scheme in 4 different systems, including Ubuntu Server and Debian, nothing complicated here, just look at the manual. The main thing is not to overdo it with the "thermonuclear flowers" - LFC
|
man dir_colors
. The network has a bunch of examples of the .dir_colors.dir_colors
- Alexey Ten