在 Awesome-WM 中是否可以将客户端窗口(即我的 IM 联系人列表)限制为特定大小?
答案1
您需要使窗口浮动,这样它在平铺布局中就被忽略了。将以下内容添加到上面的建议中:
-- [...]
{
rule = { class = "your-app-class-here" },
properties = { floating = true },
callback = function( c )
c:geometry( { width = 200 , height = 800 } )
end
},
-- [...]
答案2
rc.lua
在表中添加一条规则awful.rules.rules
,例如:
-- [...] { 规则 = { class = “your-app-class-here” }, 回调 = 函数(c) c:geometry( { 宽度 = 200 , 高度 = 800 } ) 结尾 }, -- [...]