I have two monitors, and out the box AwesomeWM works exactly the way I like. However I would like to launch one particular app (avidemux) extra wide, so that it extends horizontally across both screens.
desired: app across both screens
I've tried to achieve this with:
{ rule = { class = "avidemux" }, properties = { floating = true },
callback = function(c)
c:geometry( { x = 0, y = 0, width = 5120, height = 1440 } )
end
}
With this change, avidemux windows are indeed wide, but the window top-left corner is positioned way off-screen, and the window right border is flush to the right of my left monitor.
I'm using awesomewm 3.5.6 (Ubuntu 16.04), use the 'nvidia' driver. My rc.lua is pretty standard, but calls xrandr early on to set the screens how I like:
xrandr --output DP-3 --mode 2560x1440 --pos 2560x0 --rotate normal --output DP-2 --mode 2560x1440 --pos 0x0 --rotate normal --output DP-1 --off --output DP-0 --off
Any suggestions welcome. Thanks!