Replies: 4 comments 1 reply
-
Beta Was this translation helpful? Give feedback.
-
Here is my transparent cases (same NixOS with Hyprland):
Note when I'm using |
Beta Was this translation helpful? Give feedback.
-
Dan over on Discord very helpfully pointed out the See if some combination of the information on that thread helps. This does feel like a bug though since I'd expect the tab-bar styling to follow the theme colors and opacity settings. EDIT: beforeafter |
Beta Was this translation helpful? Give feedback.
-
make tabs slim ~/.config/gtk-4.0/gtk.css /*
debug: env GTK_DEBUG=interactive ghostty
https://docs.gtk.org/gtk4/css-overview.html
https://docs.gtk.org/gtk4/css-properties.html
*/
headerbar {
margin: 0;
padding: 0;
min-height: 20px;
}
tabbar tabbox {
margin: 0;
padding: 0;
min-height: 10px;
background-color: #1a1a1a;
font-family: monospace;
}
tabbar tabbox tab {
margin: 0;
padding: 0;
color: #9ca3af;
border-right: 1px solid #374151;
}
tabbar tabbox tab:selected {
background-color: #2d2d2d;
color: #ffffff;
}
tabbar tabbox tab label {
font-size: 13px;
} thanks https://discord.com/channels/1005603569187160125/1265734485757136956/1322931497275097138 |
Beta Was this translation helpful? Give feedback.
-
Hi, I was trying to theme my ghostty with opacity and my tab bar seems to have gone nearly fully transparent. I have a background color set and have tried other settings like setting
window-decoration = true
andwindow-theme = ghostty
Running NixOS with Hyprland
Beta Was this translation helpful? Give feedback.
All reactions