Fri
Jul
3
RESTEasy
RESTEasy is a JBoss project that provides various frameworks to help you build RESTful Web Services and RESTful Java applications. It is a fully certified and portable implementation of the JAX-RS…
Following Eclipse Milestones - Peter Friese
Did you know that you can migrate your additional plug-ins from one Eclipse install to another one? This can be a huge time-saver, especially for people who like to live on the bleeding edge.
Wed
Jul
1
Intelligent people talk about ideas.
Average people talk about things.
Small people talk about other people.
I usually install Eclipse under /opt/eclipse, so change paths accordingly:
- Create
/opt/eclipse/gtkrc-2.0 with the following contents:
style "gtkcompact" {
font_name="Sans 8"
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
GtkExpander::expander_size=10
GtkExpander::expander_spacing=0
GtkTreeView::vertical-separator=0
GtkTreeView::horizontal-separator=0
GtkTreeView::expander-size=8
GtkTreeView::fixed-height-mode=TRUE
GtkWidget::focus_padding=0
}
class "GtkWidget" style "gtkcompact"
style "gtkcompactextra" {
xthickness=0
ythickness=0
}
class "GtkButton" style "gtkcompactextra"
class "GtkToolbar" style "gtkcompactextra"
class "GtkPaned" style "gtkcompactextra"
mv /opt/eclipse/eclipse /opt/eclipse/eclipse.bin
vim /opt/eclipse/eclipse
#!/bin/sh
MY_ECLIPSE_GTKRC=/opt/eclipse/gtkrc-2.0
GTK_RC_FILES=$GTK_RC_FILES:$MY_ECLIPSE_GTKRC
GTK2_RC_FILES=$GTK2_RC_FILES:$MY_ECLIPSE_GTKRC
./eclipse.bin &