Advertisement
Guest User

Untitled

a guest
Dec 20th, 2014
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. Save this code as `~/.gtkrc-2.0` and restart your XFCE panel with `xfce4-panel -r`
  2.  
  3. 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.
  4.  
  5. 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).
  6.  
  7. ```gtkrc
  8. style "panel"
  9. {
  10. fg[NORMAL] = "#FFFFFF"
  11.  
  12. engine "murrine" {
  13. textstyle = 0
  14. }
  15. }
  16.  
  17. widget_class "*Panel*" style "panel"
  18. widget "*Panel*" style "panel"
  19. class "*Panel*" style "panel"
  20. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement