From 56cf7bf61fa2862e6c1f19549be256288a0b6ffb Mon Sep 17 00:00:00 2001 From: crater2150 Date: Mon, 9 May 2011 21:23:03 +0200 Subject: [PATCH 1/2] updates --- bindings.lua | 17 +++++++++-------- rules.lua | 15 +++++++++++++++ zenburn/theme.lua | 2 +- 3 files changed, 25 insertions(+), 9 deletions(-) diff --git a/bindings.lua b/bindings.lua index e4a2bca..946dc2d 100644 --- a/bindings.lua +++ b/bindings.lua @@ -51,14 +51,9 @@ globalkeys = awful.util.table.join( --}}} -- Standard program awful.key({ modkey, }, "Return", function () awful.util.spawn(terminal) end), --- awful.key({ modkey, }, "f", function () awful.util.spawn("firefox") end), --- awful.key({ modkey, }, "t", function () awful.util.spawn("thunderbird") end), --- awful.key({ modkey, }, "p", function () awful.util.spawn("pidgin") end), --- awful.key({ modkey, }, "s", function () awful.util.spawn("sunbird") end), --- awful.key({ modkey, }, "g", function () awful.util.spawn("gmpc") end), - awful.key({ modkey, }, "f", function () awful.util.spawn("firefox") end), - awful.key({ modkey, }, "t", function () awful.util.spawn("claws-mail") end), - awful.key({ modkey, }, "p", function () awful.util.spawn("pidgin") end), + awful.key({ modkey, }, "f", function () awful.util.spawn("webbrowser") end), + awful.key({ modkey, }, "t", function () awful.util.spawn("mail-client") end), + awful.key({ modkey, }, "p", function () awful.util.spawn("im-client") end), awful.key({ modkey, }, "g", function () awful.util.spawn("gmpc") end), awful.key({ modkey, }, "w", function () awful.util.spawn("awsetbg -a -r /home/crater2150/.config/awesome/walls/ &") end), awful.key({ }, "XF86Mail", function () awful.util.spawn("xset dpms force off") end), @@ -73,6 +68,12 @@ globalkeys = awful.util.table.join( --awful.key({ modkey }, "x", function () awful.util.spawn("cellwriter --show-window") end), awful.key({ modkey }, "x", function () teardrop("cellwriter","top","center", 0.99, 0.4)end ), awful.key({ modkey, "Control" }, "Delete", function () awful.util.spawn("xlock") end), + + awful.key({ hyper }, "1", function () awful.util.spawn("/usr/local/bin/tabletstick 1") end), + awful.key({ hyper }, "2", function () awful.util.spawn("/usr/local/bin/tabletstick 2") end), + awful.key({ hyper }, "3", function () awful.util.spawn("/usr/local/bin/tabletstick 3") end), + awful.key({ hyper }, "4", function () awful.util.spawn("/usr/local/bin/tabletstick 4") end), + awful.key({ hyper }, "5", function () awful.util.spawn("/usr/local/bin/tabletstick 4") end), -- Audio control awful.key({ }, "Print", function () teardrop("urxvtc -e alsamixer","top","center", 0.99, 0.4)end ), diff --git a/rules.lua b/rules.lua index 33ce89e..33eaa4b 100644 --- a/rules.lua +++ b/rules.lua @@ -31,6 +31,9 @@ awful.rules.rules = { properties = { master = true } }, { rule = { role = "conversation" }, callback = awful.client.setslave}, + { rule = { instance = "Weechat"}, + properties = { tag = tags[1][3]} , + callback = awful.client.setslave}, { rule = { instance = "Irssi"}, properties = { tag = tags[1][3]} , callback = awful.client.setslave}, @@ -43,12 +46,24 @@ awful.rules.rules = { properties = { tag = tags[1][4] } }, { rule = { class = "Claws-mail" }, properties = { tag = tags[1][4] } }, + { rule = { instance = "Gmutt" }, + properties = { tag = tags[1][4] } }, { rule = { class = "Sunbird-bin" }, properties = { tag = tags[1][5] } }, { rule = { class = "Gmpc" }, properties = { tag = tags[1][6] } }, { rule = { class = "Deluge" }, properties = { tag = tags[1][7] } }, + { rule = { instance = "Xrootconsole" }, + properties = { + below = true, + sticky = true, + ontop = false, + floating = true, + border_width = 0, + sticky = true + } + }, { rule = { class = "Xhtop" }, properties = { tag = tags[1][22] } }, --{ rule = { class = "OpenOffice.org 3.2" }, diff --git a/zenburn/theme.lua b/zenburn/theme.lua index 121252d..031c54a 100644 --- a/zenburn/theme.lua +++ b/zenburn/theme.lua @@ -26,7 +26,7 @@ theme.bg_urgent = "#DA4E4E" -- {{{ Borders theme.border_width = "2" theme.border_normal = "#3F3F3F" -theme.border_focus = "#6F6F6F" +theme.border_focus = "#AAAAFF" theme.border_marked = "#CC9393" -- }}} From 871d2d42e1d4156af4cd94c751b9638404450fb4 Mon Sep 17 00:00:00 2001 From: crater2150 Date: Mon, 9 May 2011 21:23:26 +0200 Subject: [PATCH 2/2] 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