From 9ca285650e751282bcc55f646427ced24260c3d2 Mon Sep 17 00:00:00 2001 From: crater2150 Date: Mon, 26 Oct 2009 14:48:50 +0100 Subject: [PATCH] working config, tags, spawn for ff tb pidgin --- rc.lua | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/rc.lua b/rc.lua index b9b31fd..4522770 100644 --- a/rc.lua +++ b/rc.lua @@ -51,9 +51,13 @@ for s = 1, screen.count() do end for i = 1, 9 do - tags[1][i].layout = layouts[1] + awful.layout.set(layouts[1], tags[1][i]); end - -- Each screen has its own tag table. + +awful.tag.setmwfact(0.3, tags[1][3]) + + +-- Each screen has its own tag table. -- }}} -- {{{ Menu @@ -217,8 +221,8 @@ globalkeys = awful.util.table.join( awful.key({ modkey, }, "space", function () awful.layout.inc(layouts, 1) end), awful.key({ modkey, "Shift" }, "space", function () awful.layout.inc(layouts, -1) end), - awful.key({ }, "F12", function () teardrop("terminal",center,center, 0.99, 0.4)end ), - awful.key({ modkey }, "F9", function () teardrop("xterm -e alsamixer","center","center", 0.99, 0.4)end ), + awful.key({ }, "F12", function () teardrop("terminal","center","center", 0.99, 0.4)end ), + awful.key({ modkey }, "F9", function () teardrop("xterm -e alsamixer","top","center", 0.99, 0.4)end ), -- Prompt awful.key({ modkey }, "r", function () mypromptbox[mouse.screen]:run() end),