FullScreens function problem

2016-06-12 Thread Abraham Baker
Hi, I recently added another monitor to my desktop, so I wanted to try out the FullScreens function as found here: https://awesomewm.org/wiki/FullScreens However, I need the client's upper-left corner to start on screen 0, but when I change the index to 0, I get an error: "invalid screen number:

Re: FullScreens function problem

2016-06-12 Thread Uli Schlachter
Hi, Am 12.06.2016 um 19:59 schrieb Abraham Baker: [...] > However, I need the client's upper-left corner to start on screen 0, but > when I change the index to 0, I get an error: "invalid screen number: 0". Lua counts things starting from 1. So 1 is the first screen, 2 the second etc. There is no

Re: FullScreens function problem

2016-06-12 Thread Abraham Baker
All I had to do to fix it was change my 20-nvidia.conf (similar to xorg.conf) using nvidia-settings to set the left-most monitor as my "primary" display. Now shift + Mod + f makes the client, no matter which screen it is on, stretch across all three monitors as intended. Thanks for clearing up th