如何为GTK 3启用Unity2D(或任何非Compiz安装)中的大小调整?
在Oneiric中,可以向~/..config/GTK-3.0/gtk.css添加以下内容:
* { -GtkWindow-resize-grip-default: true; }对于GTK 2(仍在精确地发挥作用):
style "default-style" {
GtkWindow::resize-grip-height = 15
GtkWindow::resize-grip-width = 15 }
class "GtkWidget" style "default-style"发布于 2012-08-08 18:17:47
这对我有用:将以下内容添加到~/.config/gtk-3.0/gtk.css中:
* {
-GtkWindow-resize-grip-default: true;
-GtkWindow-resize-grip-width: 15;
-GtkWindow-resize-grip-height: 15;
}https://askubuntu.com/questions/110191
复制相似问题