summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorache <ache@ache.one>2017-09-24 21:54:13 +0200
committerache <ache@ache.one>2017-09-24 21:54:13 +0200
commitd4f931dee15dce00c7efc99e8cd0665862676742 (patch)
tree3d39f45b270af47ca66cd9cd65e410bf1a2567d1
parentBatterie color (diff)
Batterie color no notification
-rw-r--r--rc.lua3
1 files changed, 0 insertions, 3 deletions
diff --git a/rc.lua b/rc.lua
index a070554..fbc54f9 100644
--- a/rc.lua
+++ b/rc.lua
@@ -217,9 +217,6 @@ function act()
a,b = string.find( percent, "%%")
nPercent = tonumber(string.sub(percent,2,a-1))
- naughty.notify({ preset = naughty.config.presets.critical,
- title = "Niveau de batterie",
- text = string.sub(percent,2,a-1) })
if nPercent > 30 then
mybatwidget:set_markup_silently( markup("#19DF1D", "🔋") .. string.sub(percent, 1, a+1))
elseif nPercent > 10 then