]> git.madduck.net Git - etc/awesome.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

fs: fix short circuit notification
authorOli Desborough <oli.desborough@ovoenergy.com>
Tue, 16 May 2017 11:33:25 +0000 (11:33 +0000)
committerLuke Bonham <dada@archlinux.info>
Fri, 19 May 2017 13:12:47 +0000 (15:12 +0200)
widget/fs.lua

index 473bd33fa77554274b31581f01ea56bf94d3479b..480c2c854330d8f653cefc9773733308c9586a58 100644 (file)
@@ -93,7 +93,7 @@ local function factory(args)
             widget = fs.widget
             settings()
 
-            if notify == "on" and #fs_now.used > 0 and tonumber(fs_now.used) >= 99 and not helpers.get_map(partition) then
+            if notify == "on" and tonumber(fs_now.used) and tonumber(fs_now.used) >= 99 and not helpers.get_map(partition) then
                 naughty.notify({
                     preset = naughty.config.presets.critical,
                     title  = "Warning",