I tried adding that code right after the local naughty = require("naughty")
that was already there, but it didn't work and actually stopped any
notifications from showing on any monitor.I doubt it was the cause, but some other functions in my rc.lua also use local i as a counter; these shouldn't interfere with each other as long as they are inside their own functions, right? Thanks, Abe On Wed, Jun 3, 2015 at 8:20 AM, Alexis BRENON <[email protected]> wrote: > Hi Abraham, > > you have to call the anughty.notift() function twice, once for each screen. > Maybe you can define a function which do it for you : > > local naughty = require('naughty') > naughty.notify = function (args) > local i = 1 > while i <= screen.count() do > args.screen = i > naughty.notify(args) > end > end > > Or something like that > > Regards, > Alexis > > Le mer. 3 juin 2015 à 15:13, Abraham Baker <[email protected]> a > écrit : > >> Hi, >> >> I have a standing/sitting monitor arrangement on my desk that makes it >> hard to see notifications on the upper monitor while sitting and vice >> versa. I've been trying to change the default naughty config so >> notifications appear on both monitors at once, but so far I'm only able to >> just change which monitor it shows up on (not both). >> >> Is there an easy way to have notifications shown on all monitors? >> >> Thanks, >> Abe Baker >> >
