summaryrefslogtreecommitdiff
path: root/rc.lua
diff options
context:
space:
mode:
authorAdrian C. (anrxc) <anrxc@sysphere.org>2009-12-17 23:33:16 +0100
committerAdrian C. (anrxc) <anrxc@sysphere.org>2009-12-17 23:34:26 +0100
commit15b92bf5e3c37314d68ebfe6bbb5404fb3a5d0e5 (patch)
tree77ac4f054235ee7c9c67cd2f932e0548ad3337e7 /rc.lua
parent7f994b9403d571b48388e75b6092cd452db5ec71 (diff)
downloadawesome-configs-15b92bf5e3c37314d68ebfe6bbb5404fb3a5d0e5.tar.xz
rc.lua: add border to wibox, clearer separation
Diffstat (limited to 'rc.lua')
-rw-r--r--rc.lua5
1 files changed, 4 insertions, 1 deletions
diff --git a/rc.lua b/rc.lua
index c1db3b1..e86e05e 100644
--- a/rc.lua
+++ b/rc.lua
@@ -286,7 +286,9 @@ for s = 1, screen.count() do
-- Create the wibox
wibox[s] = awful.wibox({ screen = s,
fg = beautiful.fg_normal, height = 12,
- bg = beautiful.bg_normal, position = "top"
+ bg = beautiful.bg_normal, position = "top",
+ border_color = beautiful.border_focus,
+ border_width = beautiful.border_width
})
-- Add widgets to the wibox
wibox[s].widgets = {
@@ -441,6 +443,7 @@ clientkeys = awful.util.table.join(
awful.key({ modkey }, "Left", function () awful.client.moveresize(-20, 0, 0, 0) end),
awful.key({ modkey }, "Right", function () awful.client.moveresize(20, 0, 0, 0) end),
awful.key({ modkey, "Control"},"r", function (c) c:redraw() end),
+ awful.key({ modkey, "Shift" }, "0", function (c) c.sticky = not c.sticky end),
awful.key({ modkey, "Shift" }, "m", function (c) c:swap(awful.client.getmaster()) end),
awful.key({ modkey, "Shift" }, "c", function (c) exec("kill -CONT " .. c.pid) end),
awful.key({ modkey, "Shift" }, "s", function (c) exec("kill -STOP " .. c.pid) end),