如何在GNOME Shell中获得透明的窗口边框/标题栏?


13

有很多带有透明面板的GNOME Shell主题,我可能希望将透明的窗口边框/标题栏主题与它一起使用。我能想到的最接近的是Emerald,但这仅适用于Compiz AFAIK,而GNOME Shell仅适用于Mutter。


11.10或12.04 ??看看这个ubuntuforums.org/showthread.php?p=11453890
猫熊

@BlueXrider用于Unity的面板;绝对不是我要找的东西。我正在使用11.10 btw,但同样适用于12.04的答案也很好。
Christopher Kyle Horton 2012年

1
这里是你要找的主题:gnome-look.org/content/show.php/...
数字幻象

Answers:


11

自Ubuntu 12.10发行以来,gconf-editor已正式由取代dconf-editor。因此,Ringtail答案将不起作用。

要在Ubuntu 12及更高版本中启用窗口标题栏透明性:

  1. 打开一个终端(Ctrl+ Alt+ T
  2. 复制并粘贴以下行:

    sudo apt-get install dconf-tools
    
  3. 按下Enter并安装软件包。
  4. 安装完成后,在终端中运行dconf-editor
  5. 导航 org/compiz/gwd
  6. 现在,将以下值更改为0到1之间的任何值:

    metacity-theme-active-opacity
    metacity-theme-inactive-opacity
    
  7. 现在,您已经更改了窗口标题栏的透明度。

1

您可以使用gconf-editor更改窗口边框的透明度。您可以更改所有窗口边框或活动窗口边框的窗口透明度。要更改窗口边框的透明度,您需要安装gconf-editor。

要安装gconf编辑器,请打开一个终端窗口(按Ctrl + Alt + T),然后复制并粘贴以下行:

sudo apt-get install gconf-editor

要启动gconf-editor,请按Alt + F2并键入:gconf-editor。

打开配置编辑器后,单击apps-> gwd,然后将metacity_theme_active_opacity和metacity_theme_opacity的值更改为小于1.0的值。要更改值,只需双击名称,然后在编辑键窗口中更改值。

metacity_theme_active_opacity:更改活动窗口边框的透明度

metacity_theme_opacity:更改所有窗口边框的透明度

资源


抱歉,但这对我不起作用,即使在注销并重新启动后也是如此。无论如何,我认为gconf应该不赞成dconf
Christopher Kyle Horton 2012年

我会留意更好的方法
Ringtail 2012年

答案1正常。
Hanynowsky'3

@Hanynowsky标记为已批准对您有用的答案。
Gediminas Jeremiah Gudelis

1
@GediminasJeremiahGudelis我已经投票了!这个问题的发布者不是我,而是WarriorIng64
Hanynowsky

1

我无法在Ubuntu 19.04中使用其他方法,因此我不得不编辑gtk.css文件:

nano ~/.config/gtk-3.0/gtk.css

这是我使用的代码:

/* add a 3-pixel border around windows */
decoration {
    border: 5px solid rgba(10, 10, 10, .3);
    background:rgba(10, 10, 10, .3);
}


/* customize the titlebar for active window */
.titlebar {
    background: rgba(10, 10, 10, .3);
    border-top:solid 1px rgba(10, 10, 10, .3);
    color:white; 
}


/* customize the titlebar for background windows */
.titlebar:backdrop  {
    background: rgba(10, 10, 10, .5);
    color:white;
} 

保存文件后,运行以下命令以应用更改:

setsid gnome-shell --replace

最终结果请参见下文。

Ubuntu 19.04上的Gnome,带有带有透明标题栏和边框的Windows

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.