Created
October 14, 2013 06:46
-
-
Save jeremija/6971733 to your computer and use it in GitHub Desktop.
A .gtkrc-2.0 file for eclipse. Launch eclipse with GTK2_RC_FILES=`gtkrc-eclipse ./eclipse`.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gtk_color_scheme = "base_color:#f9f9f9\nbg_color:#dedede\ntooltip_bg_color:#eeeeee\nselected_bg_color:#d64937\ntext_color:#333333\nfg_color:#555555\ntooltip_fg_color:#2d2d2d\nselected_fg_color:#f9f9f9\nmenubar_bg_color:#2d2d2d\nmenubar_fg_color:#dcdcdc\ntoolbar_bg_color:#dedede\ntoolbar_fg_color:#555555\nmenu_bg_color:#2d2d2d\nmenu_fg_color:#dcdcdc\npanel_bg_color:#2d2d2d\npanel_fg_color:#dcdcdc\nlink_color:#fc6f5d" | |
style "tooltips" { | |
xthickness = 3 | |
ythickness = 3 | |
bg[NORMAL] = @tooltip_bg_color | |
bg[SELECTED] = @tooltip_bg_color | |
fg[NORMAL] = @tooltip_fg_color | |
/*engine "murrine" { | |
textstyle = 0 | |
roundness = 2 | |
rgba = FALSE | |
}*/ | |
} | |
widget "gtk-tooltip*" style "tooltips" | |
style "statusbar" { | |
xthickness = 0 | |
ythickness = 0 | |
} | |
widget_class "*<GtkStatusbar>*" style "statusbar" | |
style "gtkcompact" { | |
GtkButton::default_border={0,0,0,0} | |
GtkButton::default_outside_border={0,0,0,0} | |
GtkButtonBox::child_min_width=0 | |
GtkButtonBox::child_min_heigth=0 | |
GtkButtonBox::child_internal_pad_x=0 | |
GtkButtonBox::child_internal_pad_y=0 | |
GtkMenu::vertical-padding=1 | |
GtkMenuBar::internal_padding=0 | |
GtkMenuItem::horizontal_padding=4 | |
GtkToolbar::internal-padding=0 | |
GtkToolbar::space-size=0 | |
GtkOptionMenu::indicator_size=0 | |
GtkOptionMenu::indicator_spacing=0 | |
GtkPaned::handle_size=4 | |
GtkRange::trough_border=0 | |
GtkRange::stepper_spacing=0 | |
GtkScale::value_spacing=0 | |
GtkScrolledWindow::scrollbar_spacing=0 | |
GtkTreeView::vertical-separator=0 | |
GtkTreeView::horizontal-separator=0 | |
GtkTreeView::fixed-height-mode=TRUE | |
GtkWidget::focus_padding=0 | |
} | |
class "GtkWidget" style "gtkcompact" | |
# Make tabs smaller | |
style "compact-toolbar" { | |
GtkToolbar::internal-padding = 0 | |
xthickness = 1 | |
ythickness = 1 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment