From d9a1a3be0c74bc12c00522742c3411c74c46521b Mon Sep 17 00:00:00 2001 From: crater2150 Date: Mon, 20 Nov 2017 10:04:32 +0100 Subject: [PATCH] Remove mail widget for unused account --- rc.lua | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/rc.lua b/rc.lua index d4e1d0d..b586d90 100644 --- a/rc.lua +++ b/rc.lua @@ -38,10 +38,8 @@ for s in screen do widgets.add.layout_indicator(lbottom) widgets.add.taglist("tags", lbottom) - local mail1 = widgets.add.mail("mail_me", rbottom, { os.getenv("HOME") .. "/.maildir/me" }, "bottom_right", "me") - mail1:set_left(15) - local mail2 = widgets.add.mail("mail_uber", rbottom, { os.getenv("HOME") .. "/.maildir/uber" }, "bottom_right", "uber") - mail2:set_left(15) + local mail = widgets.add.mail("mail", rbottom, { os.getenv("HOME") .. "/.maildir/uber" }, "bottom_right", "uber") + mail:set_left(15) widgets.add.cpu("cpu", rtop) widgets.add.spacer(rtop)