From 13eb68e665dccd034e6c12503707eea9e0763809 Mon Sep 17 00:00:00 2001 From: crater2150 Date: Sat, 24 Oct 2009 18:21:32 +0000 Subject: [PATCH] working, no default layout :( --- rc.lua | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/rc.lua b/rc.lua index 713568b..b9b31fd 100644 --- a/rc.lua +++ b/rc.lua @@ -49,6 +49,11 @@ for s = 1, screen.count() do -- Each screen has its own tag table. tags[s] = awful.tag({ "1", "2:www", "3:im", "4:mail", "5:music", "6", "7", "8", "9" }, s) end + +for i = 1, 9 do + tags[1][i].layout = layouts[1] +end + -- Each screen has its own tag table. -- }}} -- {{{ Menu @@ -306,8 +311,10 @@ awful.rules.rules = { { rule = { class = "gimp" }, properties = { floating = true } }, -- Set Firefox to always map on tags number 2 of screen 1. - -- { rule = { class = "Firefox" }, - -- properties = { tag = tags[1][2] } }, + { rule = { class = "Firefox" }, + properties = { tag = tags[1][2] } }, + { rule = { class = "Thunderbird-bin" }, + properties = { tag = tags[1][4] } }, } -- }}}