Melhore o painel do Xubuntu para o plano de fundo cinza

0

Eu fiz um arquivo .png com a cor de fundo da barra de tarefas do Windows 98 e o configurei como plano de fundo para o painel do xfce.

No entanto, o texto da hora, bem como os ícones Bluetooth, Wi-Fi e volume, são brancos e o cinza do painel está muito próximo do branco, portanto, as cores não se misturam.

Como posso alterar o texto para preto em um fundo branco?

Estou executando o Xubuntu de 64 bits.

    
por Artful Aardvark 22.09.2016 / 03:25

1 resposta

1

Meu problema foi resolvido seguindo estas etapas:

  1. executado no terminal touch ~/.gtk-2.0
  2. Executar no terminal leafpad ~/.gtk-2.0 (substitua o leafpad pelo seu editor de texto favorito)
  3. Cole este texto no editor de texto:
style "gtk-theme-config-panel" {
    bg[NORMAL] = "#000000"
    bg[PRELIGHT] = shade(1.1,"#000000")
    bg[ACTIVE] = shade(0.9,"#000000")
    bg[SELECTED] = shade(0.97,"#000000")
    fg[NORMAL] = "#729fcf"
    fg[PRELIGHT] = "#729fcf"
    fg[SELECTED] = "#729fcf"
    fg[ACTIVE] = "#729fcf"
}

widget "*PanelWidget*" style "gtk-theme-config-panel"
widget "*PanelApplet*" style "gtk-theme-config-panel"
widget "*fast-user-switch*" style "gtk-theme-config-panel"
widget "*CPUFreq*Applet*" style "gtk-theme-config-panel"
widget "*indicator-applet*" style "gtk-theme-config-panel"
class "PanelApp*" style "gtk-theme-config-panel"
class "PanelToplevel*" style "gtk-theme-config-panel"
widget_class "*PanelToplevel*" style "gtk-theme-config-panel"
widget_class "*notif*" style "gtk-theme-config-panel"
widget_class "*Notif*" style "gtk-theme-config-panel"
widget_class "*Tray*" style "gtk-theme-config-panel" 
widget_class "*tray*" style "gtk-theme-config-panel"
widget_class "*computertemp*" style "gtk-theme-config-panel"
widget_class "*Applet*Tomboy*" style "gtk-theme-config-panel"
widget_class "*Applet*Netstatus*" style "gtk-theme-config-panel"
widget "*gdm-user-switch-menubar*" style "gtk-theme-config-panel"
widget "*Xfce*Panel*" style "gtk-theme-config-panel"
class "*Xfce*Panel*" style "gtk-theme-config-panel"
style "panel"
{
    fg[NORMAL] = "#CED8EB"
}

widget_class "*Panel*"      style "panel"
widget "*Panel*"            style "panel"
class "*Panel*"             style "panel"
  1. Reinicie seu computador.
  2. Por algum motivo, no meu computador, não funcionaria até eu terminar a sessão DEPOIS de reiniciar e efetuar login novamente. Talvez seja necessário fazer isso também.
por Artful Aardvark 22.09.2016 / 05:11