1

enter image description here

In Ubuntu 20.10, it's hard to read the names of items on my desktop when I use a busy wallpaper background image. Can I change a setting or something to make the text blocks have an opaque background?

1 Answers1

1

following this post as a guide How to customize 19.10 Desktop Icon Font Size

edit the stylesheet.css file to have a line like below

.name-label {
    text-shadow: 1px 1px black;
    color: white;
    text-align: center;
    background-color: rgba(3,5,2,0.2)
}

Observe this line, background-color: rgba(3,5,2,0.2). edit the rgba color as you wish.

enter image description here

PRATAP
  • 22,460