我在终端的状态行中塞入了大量信息,并希望能够在面板中看到这些信息,但要看到所有信息,我需要 Cinnamon 允许我将面板条目加宽一点。我已经在 cinnamon.css#panel.font-size 中将字体缩小到我能承受的程度。如何更改面板条目的默认宽度?
答案1
我按照以下方式将它们扩大了 1.25 倍:
--- /usr/share/cinnamon/applets/[email protected]/applet.js 2014-12-28 17:30:10.451714782 +0000
+++ /home/mint/.local/share/cinnamon/applets/window-list@des-nerger/applet.js 2014-12-28 07:51:57.610317300 +0000
@@ -637,7 +637,7 @@
alloc.natural_size = naturalSize;
[minSize, naturalSize] = this._label.get_preferred_width(forHeight);
alloc.min_size = alloc.min_size + Math.max(0, minSize - Math.floor(alloc.min_size / 2));
- alloc.natural_size = 150 * global.ui_scale;
+ alloc.natural_size = 150 * global.ui_scale * 5 / 4;
},
_getContentPreferredHeight: function(actor, forWidth, alloc) {
答案2
要使面板条目扩展到栏的整个宽度:
首选项 > 小程序 > 窗口列表 > 配置
查看窗口按钮可以有不同的大小并使用整个可用空间。
Cinnamon 重启后,面板条目现在会展开以显示整个窗口标题(如果可能)。
答案3
.window-list-item-label {
font-weight: normal;
width: 12em; /* <- adjust this value */
min-width: 5px;
}