From 871d2d42e1d4156af4cd94c751b9638404450fb4 Mon Sep 17 00:00:00 2001 From: crater2150 Date: Mon, 9 May 2011 21:23:26 +0200 Subject: [PATCH] battery and mail widgets --- wibox.lua | 104 +++++++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 84 insertions(+), 20 deletions(-) diff --git a/wibox.lua b/wibox.lua index 1ad3efd..83012f8 100644 --- a/wibox.lua +++ b/wibox.lua @@ -13,11 +13,7 @@ end spacer = widget({ type = "textbox", name = "spacer" }) spacer.text = " " -separator = widget({ type = "textbox", name = "separator", align = "center" }) -separator.text = " )( " - nullwidget = widget({ type = "textbox", name = "nullwidget" }) -separator.text = "" -- }}} -- {{{ Wibox @@ -31,23 +27,89 @@ mysystray = widget({ type = "systray" }) clock = widget({ type = "textbox" }) vicious.register(clock, vicious.widgets.date, "%b %d, %R", 60) -memwidget = widget({ type = "textbox" }) -vicious.register(memwidget, vicious.widgets.mem, "RAM: $1% ($2MB / $3MB) ", 13) + +-- mail widget {{{ +mailwidget = widget({ type = "textbox" }) +vicious.register(mailwidget, vicious.widgets.mdir, + function(widget, args) + if args[1] > 0 then + naughty.notify({ + title = "New mail arrived", + text = "Unread "..args[2].." / New "..args[1], + position = "top_left" + + }) + widget.bg = theme.bg_urgent + widget.fg = theme.fg_urgent + elseif args[2] > 0 then + widget.bg = theme.bg_focus + widget.fg = theme.fg_focus + else + widget.bg = theme.bg_normal + widget.fg = theme.fg_normal + end + return "⬓⬓ Unread "..args[2].." / New "..args[1].. " " + end, 181, {os.getenv("HOME") .. "/.maildir/"}) +--}}} + + +-- battery {{{ if exists("/proc/acpi/battery/BAT0") then - batwidget1 = widget({ type = "textbox" }) - vicious.register(batwidget1, vicious.widgets.bat, " )( BAT0: $1$2% - $3", 61, "BAT0") -else batwidget1 = nullwidget end + batwidget0 = widget({ type = "textbox" }) + vicious.register(batwidget0, vicious.widgets.bat, + function (widget, args) + if args[2] == 0 then return "" + else + if args[2] < 15 then + widget.bg = theme.bg_urgent + widget.fg = theme.fg_urgent + else + widget.bg = theme.bg_normal + widget.fg = theme.fg_normal + end + return "( BAT0: "..args[1]..args[2].."% - "..args[3].." )" + end + end, 61, "BAT0") +else batwidget0 = nullwidget end if exists("/proc/acpi/battery/BAT1") then - batwidget2 = widget({ type = "textbox" }) - vicious.register(batwidget2, vicious.widgets.bat, " )( BAT1: $1$2% - $3", 61, "BAT1") -else batwidget2 = nullwidget end + batwidget1 = widget({ type = "textbox" }) + vicious.register(batwidget1, vicious.widgets.bat, + function (widget, args) + if args[2] == 0 then return "" + else + if args[2] < 15 then + widget.bg = theme.bg_urgent + widget.fg = theme.fg_urgent + else + widget.bg = theme.bg_normal + widget.fg = theme.fg_normal + end + return "( BAT1: "..args[1]..args[2].."% - "..args[3].." )" + end + end, 61, "BAT1") +else batwidget1 = nullwidget end if exists("/proc/acpi/battery/BAT2") then - batwidget3 = widget({ type = "textbox" }) - vicious.register(batwidget3, vicious.widgets.bat, " )( BAT2: $1$2% - $3", 61, "BAT2") -else batwidget3 = nullwidget end + batwidget2 = widget({ type = "textbox" }) + vicious.register(batwidget2, vicious.widgets.bat, + function (widget, args) + if args[2] == 0 then return "" + else + if args[2] < 15 then + widget.bg = theme.bg_urgent + widget.fg = theme.fg_urgent + else + widget.bg = theme.bg_normal + widget.fg = theme.fg_normal + end + return "( BAT2: "..args[1]..args[2].."% - "..args[3].." )" + end + end, 61, "BAT2") +else batwidget2 = nullwidget end + +--}}} cpulabel = widget({ type = "textbox" }) vicious.register(cpulabel, vicious.widgets.cpu, "CPU: $1%") @@ -89,23 +151,25 @@ for s = 1, screen.count() do leftwibox[s].widgets = { mytaglist[s], mylayoutbox[s], + mailwidget, spacer, layout = awful.widget.layout.horizontal.rightleft } rightwibox[s].widgets = { { - clock, - separator, spacer, memwidget, + clock, spacer, + batwidget0, batwidget1, batwidget2, - batwidget3, wlanwidget, - separator, spacer, cpulabel, cpuwidget, + spacer, cpulabel, cpuwidget, spacer, layout = awful.widget.layout.horizontal.leftright }, - separator, spacer, s == 1 and mysystray or nil, + spacer, s == 1 and mysystray or nil, layout = awful.widget.layout.horizontal.leftright } end -- }}} +-- +-- vim:foldmethod=marker