Skip to content

Instantly share code, notes, and snippets.

@kirsle
Created December 21, 2014 05:29
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save kirsle/f08158466c4125b7c2fa to your computer and use it in GitHub Desktop.
Save kirsle/f08158466c4125b7c2fa to your computer and use it in GitHub Desktop.
GTK Config for the panel text color on the XFCE Desktop

Save this code as ~/.gtkrc-2.0 and restart your XFCE panel with xfce4-panel -r

This file will set your panel text color to white (overriding the color setting from your current GTK theme). Change the #FFFFFF to another color if you want another color.

The engine "murrine" part will remove the text style for Murrine based themes (for example, a drop-shadow effect used in the Ubuntu Ambiance theme and Greybird).

style "panel"
{
    fg[NORMAL] = "#FFFFFF"

    engine "murrine" {
        textstyle = 0
    }
}

widget_class "*Panel*" style "panel"
widget "*Panel*" style "panel"
class "*Panel*" style "panel"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment