How to change console color scheme?

Issues and / or general discussion relating to Puppy

Moderator: Forum moderators

Post Reply
User avatar
April
Posts: 493
Joined: Tue Dec 29, 2020 9:06 pm
Has thanked: 57 times
Been thanked: 28 times

How to change console color scheme?

Post by April »

How do I get rid of this ridiculous colour scheme for my console please.

I can't see a damn thing.!
It comes up well here but in the screen it just seems to blur up!

green type.jpg
green type.jpg (53.56 KiB) Viewed 373 times
Last edited by Flash on Tue Nov 02, 2021 2:49 am, edited 1 time in total.
Reason: Original title: Damn unreadable type

The Australian State Governments have all enacted laws to steal your assets on your death. All legal paperwork is binned and all assets seized on one disgruntled child's complaint.Move them well before you die or go into a home.

williwaw
Posts: 1666
Joined: Tue Jul 14, 2020 11:24 pm
Has thanked: 148 times
Been thanked: 301 times

Re: Damn unreadable type

Post by williwaw »

colored type in the terminal can be annoying, but without knowing what terminal emulator this is, it is hard to speculate where the configuration file is

User avatar
snoring_cat
Posts: 206
Joined: Tue Sep 21, 2021 3:40 pm
Location: Earth
Has thanked: 24 times
Been thanked: 46 times

Re: Damn unreadable type

Post by snoring_cat »

April,

Please try running the following and adjusting your colors

Code: Select all

urxvtcontrol

you will have to open new terminals to see the effects

Meeeooow!

-- substance over noise, since 5 minutes in the future --

User avatar
April
Posts: 493
Joined: Tue Dec 29, 2020 9:06 pm
Has thanked: 57 times
Been thanked: 28 times

Re: How to change console color scheme?

Post by April »

@snoring_cat Thanks that helped .
There is still some other setting that changes the colours according to the file types and now I cannot even read "root" but I can live with that . At least I was able to enlarge the text which made a big diff.

The Australian State Governments have all enacted laws to steal your assets on your death. All legal paperwork is binned and all assets seized on one disgruntled child's complaint.Move them well before you die or go into a home.

User avatar
April
Posts: 493
Joined: Tue Dec 29, 2020 9:06 pm
Has thanked: 57 times
Been thanked: 28 times

Re: How to change console color scheme?

Post by April »

I had not noticed that before
urxvtcontrol deals with one console and can also be started from the menu button.

Another console comes up when started from urxvt terminal emulator. A much easier terminal to view. Strange

The Australian State Governments have all enacted laws to steal your assets on your death. All legal paperwork is binned and all assets seized on one disgruntled child's complaint.Move them well before you die or go into a home.

User avatar
bigpup
Moderator
Posts: 6405
Joined: Tue Jul 14, 2020 11:19 pm
Location: Earth, South Eastern U.S.
Has thanked: 760 times
Been thanked: 1326 times

Re: How to change console color scheme?

Post by bigpup »

What specific Puppy version?

Forum Global Moderator
The things you do not tell us, are usually the clue to fixing the problem.
When I was a kid, I wanted to be older.
This is not what I expected :o

User avatar
snoring_cat
Posts: 206
Joined: Tue Sep 21, 2021 3:40 pm
Location: Earth
Has thanked: 24 times
Been thanked: 46 times

Re: How to change console color scheme?

Post by snoring_cat »

if you change "Text" to white, and "Background" to black in URXVt Terminal Control, you should be able to see all colors easily. After you apply changes, all future URXVT terminals will show the color scheme you made. Good Luck seeing "root".

Meeeooow!

-- substance over noise, since 5 minutes in the future --

User avatar
April
Posts: 493
Joined: Tue Dec 29, 2020 9:06 pm
Has thanked: 57 times
Been thanked: 28 times

Re: How to change console color scheme?

Post by April »

@bigpup Xenialpup64-7.5

The Australian State Governments have all enacted laws to steal your assets on your death. All legal paperwork is binned and all assets seized on one disgruntled child's complaint.Move them well before you die or go into a home.

User avatar
April
Posts: 493
Joined: Tue Dec 29, 2020 9:06 pm
Has thanked: 57 times
Been thanked: 28 times

Re: How to change console color scheme?

Post by April »

snoring_cat wrote: Tue Nov 02, 2021 4:11 pm

if you change "Text" to white, and "Background" to black in URXVt Terminal Control, you should be able to see all colors easily. After you apply changes, all future URXVT terminals will show the color scheme you made. Good Luck seeing "root".

Yes ,in fact that's much better with a black background , thank you.

Started from the Menu the urxvt console there is not changed . Still a white background.

The Australian State Governments have all enacted laws to steal your assets on your death. All legal paperwork is binned and all assets seized on one disgruntled child's complaint.Move them well before you die or go into a home.

User avatar
6502coder
Posts: 89
Joined: Mon Jul 13, 2020 6:21 pm
Location: Western US
Has thanked: 3 times
Been thanked: 20 times

Re: How to change console color scheme?

Post by 6502coder »

If you don't want "ls" to use coloring to distinguish different types of files, edit your ~/.bashrc file as follows:

Find the line that reads

Code: Select all

      alias ls=...blahblahblah...

and change this to

Code: Select all

      alias ls="/bin/ls --color=never"

If you want directories to be marked with a trailing "/" and symlinks to be marked with a trailing "@", use

Code: Select all

     alias ls="/bin/ls --color=never -F"

To set the urxvt colors, edit your ~/.Xdefaults file as follows:

Find the line that reads

Code: Select all

     URxvt.foreground: "some color"

and change it to

Code: Select all

     URxvt.foreground: "white"

Set URxvt.background in the same way:

Code: Select all

     URxvt.background: "black"
User avatar
snoring_cat
Posts: 206
Joined: Tue Sep 21, 2021 3:40 pm
Location: Earth
Has thanked: 24 times
Been thanked: 46 times

Re: How to change console color scheme?

Post by snoring_cat »

When you are able to get a console to show the colors you want, as well as a console that does not show the colors you want, please run the following in a command line and paste the response to a post

Code: Select all

ps -ef | grep vt

Note that these consoles should have been opened after you ran Urxvt Terminal Control and hit the Apply button, so that your changes are saved to .Xdefaults.

I suspect that you might be running urxvt and rxvt. Those are two separate console programs, even though they look the same when run. rxvt settings aren't updated in the .Xdefaults file when using Urxvt Terminal Control. If that is the case, you will have to edit the /root/Xdefaults file and add 2 lines. Near the following lines in that file

Code: Select all

urxvt.background:#000000
urxvt.foreground:#ffffff

Add

Code: Select all

rxvt.background:#000000
rxvt.foreground:#ffffff

Meeeooow!

-- substance over noise, since 5 minutes in the future --

User avatar
April
Posts: 493
Joined: Tue Dec 29, 2020 9:06 pm
Has thanked: 57 times
Been thanked: 28 times

Re: How to change console color scheme?

Post by April »

Yes you are right I think but I have colours I can see now so I'll leave it as is . Thanks again

consoles.jpg
consoles.jpg (166.86 KiB) Viewed 508 times

The Australian State Governments have all enacted laws to steal your assets on your death. All legal paperwork is binned and all assets seized on one disgruntled child's complaint.Move them well before you die or go into a home.

Zuzia
Posts: 106
Joined: Wed Oct 21, 2020 2:32 pm
Has thanked: 13 times
Been thanked: 6 times

Re: How to change console color scheme?

Post by Zuzia »

All answer can help but if you wont nice color in terminal easy way.
Use this site.

https://terminal.sexy/

Save theme on disk change "*" to your terminal name urxvt or rxvt or other who can use /root/.Xdefaults and paste here that section.

Code: Select all

!zuzia terminal  urxvt colors

! special
urxvt.foreground:   #ababab
urxvt.background:   #000000
urxvt.cursorColor:  #ababab

! black
urxvt.color0:       #000000
urxvt.color8:       #343434

! red
urxvt.color1:       #e92f2f
urxvt.color9:       #e92f2f

! green
urxvt.color2:       #0ed839
urxvt.color10:      #0ed839

! yellow
urxvt.color3:       #dddd13
urxvt.color11:      #dddd13

! blue
urxvt.color4:       #3b48e3
urxvt.color12:      #3b48e3

! magenta
urxvt.color5:       #f996e2
urxvt.color13:      #f996e2

! cyan
urxvt.color6:       #23edda
urxvt.color14:      #23edda

! white
urxvt.color7:       #ababab
urxvt.color15:      #f9f9f9

This is my terminal colors you can generate yours... good luck!
I hope i can help You all... Bye! Cheers from Poland!

Attachments
terminal color2.jpg
terminal color2.jpg (190.97 KiB) Viewed 490 times
terminal color.jpg
terminal color.jpg (128.78 KiB) Viewed 490 times
User avatar
JASpup
Posts: 1653
Joined: Sun Oct 04, 2020 10:52 am
Location: U.S.A.
Has thanked: 70 times
Been thanked: 89 times

Re: How to change console color scheme?

Post by JASpup »

April wrote: Tue Nov 02, 2021 6:12 am

I had not noticed that before
urxvtcontrol deals with one console and can also be started from the menu button.

Another console comes up when started from urxvt terminal emulator. A much easier terminal to view. Strange

Yes.

After I started installing more full-featured consoles, I noticed that some puppies already have multiple consoles installed, sometimes as many as three, still not as versatile as alt-consoles or as readily configurable as urxvt with the control utility.

You can change your console colors and run a script in terminal that won't have them. It's a lot of nuance to observe everything so I only attend to problems and disturbances (like not being able to see text).

UPDATE (example):

tahr-terminals.png
tahr-terminals.png (32.8 KiB) Viewed 465 times

This is my Tahr remaster.

I just reconfigured my urxvt colors (bottom window).

The configuration file was not saved in the remaster, so I do this almost every boot.

The top window is the terminal that runs when I click on a launcher as Terminal=true.

On the Whiz-Neophyte Bridge
Linux Über Alles
Disclaimer: You may not be reading my words as posted.

Post Reply

Return to “Users”