Linux

如何“縮小”螢幕視窗,一切看起來都太大了?

  • May 27, 2012

我買了新的筆記型電腦 Dell Inspiron,首先我安裝了 Linux Mint 和 Eclipse 用於 Java 開發。但我不喜歡 Eclipse 的外觀,一切在螢幕上看起來都太大了。標籤和菜單佔據了一半的空間,沒有編輯空間,而且字型太大。

如果可能的話,我想縮小整個螢幕,使用更小的字型和標籤等,但顯示器已經處於最大解析度(1366x768)。

我怎樣才能做到這一點?我對 Linux 和 gnome 很陌生,但我確信我的問題有一個簡單的解決方案。

我在這裡找到了解決方案。它建議通過將其粘貼到以下內容來創建新的緊湊 GTK 樣式~/.gtkrc-2.0

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"

引用自:https://unix.stackexchange.com/questions/39390