-
I seem to be unable to figure out how to make the background of the dock completely transparent. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
There are no style settings for the dock. However for themers and modders you can supply your own custom CSS in your home folder. You might be interested in this community project: https://github.com/teamcons/eOSdock-themeswitcher |
Beta Was this translation helpful? Give feedback.
-
Wow. That's a pretty substantial regression from previous. Decidely sub-optimal.... If the future of EoS is to be "custom CSS" for "themers and modders", then frankly I'm out. I am not conversant in CSS and have no intention of becoming so. Not all of us are dev's BTW. Most are just users. I had a look at the suggestion "solution". That's a non-starter if there ever was one. |
Beta Was this translation helpful? Give feedback.
-
in the hidden folder ~/.config/gtk-4.0/ Add to it the following lines : dock { logout, login. dock is now transparent. |
Beta Was this translation helpful? Give feedback.
in the hidden folder ~/.config/gtk-4.0/
Create a gtk.css file
Add to it the following lines :
dock {
background: alpha(@bg_color, 0.0);
}
logout, login. dock is now transparent.
you can replace 0.0 with 1 for completely opaque
by default it is 0.6