From: Luke Bonham Date: Fri, 24 Feb 2017 12:24:52 +0000 (+0100) Subject: fs: elseif -> else in scr argument check; #322 X-Git-Url: https://git.madduck.net/etc/awesome.git/commitdiff_plain/26acf377071368429f0cb4bb415f1c362ea55f92 fs: elseif -> else in scr argument check; #322 --- diff --git a/widget/fs.lua b/widget/fs.lua index 49345ca..b2a21db 100644 --- a/widget/fs.lua +++ b/widget/fs.lua @@ -32,13 +32,13 @@ function fs.show(seconds, scr) if fs.followtag then fs.notification_preset.screen = focused() - elseif scr then + else fs.notification_preset.screen = scr or 1 end fs.notification = naughty.notify({ - preset = fs.notification_preset, - timeout = seconds or 5 + preset = fs.notification_preset, + timeout = seconds or 5 }) end