ubuntu系統下的eclipse預設介面顯示很是難看,圖示大字型大,看著都沒了寫**的慾望了...
找了下解決方案,這裡記錄下:
首先在使用者目錄下查詢.gtkrc,.gtkrc-2.0 如果裝了kde4還有~/.gtkrc-2.0-kde4這幾個檔案,如果沒有(多半是沒有)就新建這三個檔案,然後在這三個檔案中都要新增以下這句話:
include "/home/yourusername/.gtkrc.mine"
注意:這句話不要照搬抄,yourusername代表你自己的使用者目錄名.
其實只要新建.gtkrc和.gtkrc-2.0兩個檔案就可以了,因為ubuntu裡的檔名不給輸入"/"符號,kde4沒裝過,不知道是咋回事
然後新建.gtkrc.mine檔案,新增如下內容:
style "gtkcompact"
gtkbutton::default_outside_border=
gtkbuttonbox::child_min_width=1
gtkbuttonbox::child_min_heigth=1
gtkbuttonbox::child_internal_pad_x=1
gtkbuttonbox::child_internal_pad_y=1
gtkmenu::vertical-padding=1
gtkmenubar::internal_padding=1
gtkmenuitem::horizontal_padding=4
gtk*******::internal-padding=1
gtk*******::space-size=1
gtkoptionmenu::indicator_size=1
gtkoptionmenu::indicator_spacing=1
gtkpaned::handle_size=4
gtkrange::trough_border=1
gtkrange::stepper_spacing=1
gtkscale::value_spacing=1
gtkscrolledwindow::scrollbar_spacing=1
gtkexpander::expander_size=10
gtkexpander::expander_spacing=1
gtktreeview::vertical-separator=1
gtktreeview::horizontal-separator=1
gtktreeview::expander-size=9
gtktreeview::fixed-height-mode=true
gtkwidget::focus_padding=1
}class "gtkwidget" style "gtkcompact"
style "gtkcompactextra"
class "gtkbutton" style "gtkcompactextra"
class "gtk*******" style "gtkcompactextra"
class "gtkpaned" style "gtkcompactextra"
重啟eclipse,ok了
為了達到最佳效果,還需要再調整下eclispe的字型樣式及大小,這樣就完美了~~
ubuntu下Eclipse下新增GBK編碼
把windows下的工程匯入到了linux下eclipse中,由於以前的工程 都是gbk編碼的 windows下的eclipse 缺省會去讀取系統的編碼,所以widnwos下的eclipse的編碼為gbk 而ubuntu預設是不支援gbk編碼的。所以,首先我們要先讓 ubuntu支援gbk,方法如下...
ubuntu下Eclipse工程除錯
配置記錄 1.編譯c 工程時,提示 故在project properties c c build environment修改path環境變數 增加.armv7 codesourcery arm none linux gnueabi bin,該path下包含g home kevinxiao share...
ubuntu下eclipse啟動配置
裝eclipse之前,請確定你安裝了jdk。然後在該檔案中新增以下內容 bin sh export eclipse home home opt eclipse 使root使用者的環境變數生效 source etc profile eclipse home eclipse 3.讓修改該指令碼的許可權,...