答案1
经过多次尝试和错误后发现,需要将此代码添加到 Zorions gnome-shell 主题文件的底部gnome-shell.css
。
/* panel color */
#panel.solid {
background-gradient-direction: vertical;
background-gradient-start: rgba(255, 255, 255, 0.5);
background-gradient-end: rgba(255, 255, 255, 0.5);
text-shadow: none;
}
我从 gnome-shell 文件中的文本条目中获取了 rgba 颜色/* TOP BAR */
。您可以更改您想要的任何颜色。
/* TOP BAR */
#panel {
background-color: rgba(255, 255, 255, 0.5);
/* transition from solid to transparent */
transition-duration: 500ms;
font-weight: bold;
height: 2em;
font-feature-settings: "tnum";
box-shadow: none; }
我对 Windows 正常和最大化的自定义..