jnsh / arc-theme

A flat theme with transparent elements (actively maintained fork)
GNU General Public License v3.0
902 stars 77 forks source link

Transparent background in the GNOME Terminal scrollbar #74

Closed volsa closed 4 years ago

volsa commented 4 years ago

More a feature request rather than an issue. I was wondering if it'd be possible to implement this nice little "feature" as I personally don't think a background for the scrollbar is needed inside the GNOME Terminal and furthermore gives a nice minimalist look to it. Any thoughts to it? before after

jnsh commented 4 years ago

Looks like transparent background wouldn't work as you hoped in gnome-terminal, as the scrollbar is drawn next to the vte-terminal area, rather than above it. Even if that wasn't the case, there are a few reasons why I'd prefer to not implement this.

However, you can change the scrollbar background color for your user to match the terminal background, by injecting something like the following CSS rule in ~/.config/gtk-3.0/gtk.css (replace red with working CSS color value/name of your terminal background color):

terminal-screen-container scrollbar {
  background: red;
}

I hope this helps. Closing this issue as WONTFIX.