this post was submitted on 11 Sep 2023
43 points (78.7% liked)

Unixporn

15168 readers
44 users here now

Unixporn

Submit screenshots of all your *NIX desktops, themes, and nifty configurations, or submit anything else that will make themers happy. Maybe a server running on an Amiga, or a Thinkpad signed by Bjarne Stroustrup? Show the world how pretty your computer can be!

Rules

  1. Post On-Topic
  2. No Defaults
  3. Busy Screenshots
  4. Use High-Quality Images
  5. Include a Details Comment
  6. No NSFW
  7. No Racism or use of racist terms

founded 5 years ago
MODERATORS
 

Someone direct me to a guide for this shit because I have no idea how y'all do it

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 5 points 1 year ago* (last edited 1 year ago)

How? Installing the right tools and changing configuration files wich are typically (but not always) located under /home/[your user]/.config/[application]

For example neofetch config is located at ~/.config/neofetch/config But i think that's not the default config. An example config would be typically (but again not always) located at /usr/share/[application)

So what you would do is

cp -r /usr/share/neofetch ~/.config

vim ~/.config/neofetch/config

And edit the file however you want. Syntax is rarely the same between apps so prepare documentation if you do more than just change values

(Replace vim with you editor of choice)