gpt4 book ai didi

awesome-wm - 真棒 WM : automatically display client across two monitors

转载 作者:行者123 更新时间:2023-12-05 07:46:18 41 4
gpt4 key购买 nike

我有两个显示器,开箱即用的 AwesomeWM 完全按照我喜欢的方式工作。但是,我想启动一个特别宽的应用程序 (avidemux),以便它在两个屏幕上水平延伸。

desired: app across both screens

我试图通过以下方式实现这一目标:

 { rule = { class = "avidemux" }, properties = { floating = true },
callback = function(c)
c:geometry( { x = 0, y = 0, width = 5120, height = 1440 } )
end
}

通过此更改,avidemux 窗口确实变宽了,但窗口左上角远离屏幕,窗口右边框与我的左显示器右侧齐平。

actual: app on one screen

我正在使用 awesomewm 3.5.6(Ubuntu 16.04),使用“nvidia”驱动程序。我的 rc.lua 非常标准,但很早就调用 xrandr 来设置我喜欢的屏幕:

xrandr --output DP-3 --mode 2560x1440 --pos 2560x0 --rotate normal --output DP-2 --mode 2560x1440 --pos 0x0 --rotate normal --output DP-1 --off - -输出 DP-0 --关闭

欢迎提出任何建议。谢谢!

最佳答案

在应用几何之前尝试将窗口发送到右监视器,例如

callback = function(c)
c.screen = 2
c:geometry( { x = 0, y = 0, width = 5120, height = 1440 } )
end

关于awesome-wm - 真棒 WM : automatically display client across two monitors,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40884715/

41 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com