如何从主窗口背景中删除 GIMP 徽标?

如何从主窗口背景中删除 GIMP 徽标?

有没有办法从主窗口背景中删除 GIMP 徽标?未找到说明gimp.org

GIMP 主窗口

答案1

在工作区背景中隐藏 Wilber 徽标,默认深色主题 GIMP 2.10:

  1. /Applications/GIMP-2.10.app/Contents/Resources/share/gimp/2.0/themes/Dark/在文本编辑器中打开默认主题的 gtkrc 文件(在 Mac 上的位置:) 。

  2. 找到以下代码(大约第 360 行):

    style "gimp-dark-display-style" = "gimp-dark-default-style"
    {
      GimpRuler::font-scale = 0.6444
      GimpUnitComboBox::label-scale = 0.8333
      GimpScaleComboBox::label-scale = 0.8333
      GtkComboBox::arrow-size = 8
      GtkButton::inner-border = { 0, 0, 0, 0 }
      GtkButton::focus-line-width = 0
      GtkButton::focus-padding = 0
    }
    widget_class "*GimpDisplayShell.*" style "gimp-dark-display-style"
    
  3. 在括号内{ }添加此行(如果需要,更改#454545 颜色):

    fg[NORMAL] = "#454545"
    
  4. 结果:

    style "gimp-dark-display-style" = "gimp-dark-default-style"
    {
      GimpRuler::font-scale = 0.6444
      GimpUnitComboBox::label-scale = 0.8333
      GimpScaleComboBox::label-scale = 0.8333
      GtkComboBox::arrow-size = 8
      GtkButton::inner-border = { 0, 0, 0, 0 }
      GtkButton::focus-line-width = 0
      GtkButton::focus-padding = 0
      fg[NORMAL] = "#454545"
    }
    widget_class "*GimpDisplayShell.*" style "gimp-dark-display-style"
    

这会将 Wilbur 元素的颜色更改为十六进制 #454545,这应该与工作区的纯色背景颜色相同。(如果不是,请找出背景的十六进制值并添加该数字。)

答案2

请参阅此邮件列表帖子:https://lists.debian.org/debian-user/2018/09/msg00268.html。它将告诉您如何下载和安装没有 Wilber 徽标的新闻主题。

我在 Mac 上用过。我将主题添加到 /Applications/GIMP-2.10.app/Contents/Resources/share/gimp/2.0/themes/ 文件夹,然后激活主题。再也没有令人毛骨悚然、眼睛凸出的狼盯着我了。请参阅帖子,了解在其他操作系统上添加主题的位置。

相关内容