Home > Net >  How to change neofetch logo color?
How to change neofetch logo color?

Time:09-26

I'm looking for way to change ubuntu logo color for neofetch, default is red.

How to change ubuntu ascii art color?

(additional info)

Ubuntu 22.04.01 LTS, Neofetch version 7.1.0

CodePudding user response:

To change the colour you can run neofetch like this: neofetch --ascii_colors 1 2 3 4 5 6. Take a look at the neofetch wiki for more info.

If you want to change it permanently add this for example to your config ascii_colors=(2 5 6 1). To better understand take a look at the ascii art file format section of the wiki.

You could also change the colours directly from within the neofetch script itself. Go to where neofetch is installed (/usr/bin/neofetch) and open it with vim or whatever you use (don't forget to be sudo). Go-to the line where ubuntu's logo is (line 11031). You'll see ${c1} or ${c2} these are the different colours being used. Simply change them to what you want.

Hope this helps.

  • Related