change tag names and set default layouts

auto-flake-update
Yorick van Pelt 2012-11-20 22:19:51 +01:00
parent 7a7db0b722
commit eb0391bcfb
1 changed files with 6 additions and 1 deletions

View File

@ -93,7 +93,12 @@ end
tags = {}
for s = 1, screen.count() do
-- Each screen has its own tag table.
tags[s] = awful.tag({ "w", "d", "c", 4, 5, 6, 7, 8, 9 }, s, layouts[1])
local tagNames = { "term", "web", "dev", "chat", "edu", "med", "misc", 8, 9 }
local tagLayouts = { 1, 2, 2, 2, 1, 1, 1, 1, 1 }
for i,l in ipairs(tagLayouts) do
tagLayouts[i] = layouts[l]
end
tags[s] = awful.tag({ "term", "web", "dev", "chat", "edu", "mus", "med", 8, 9 }, s, tagLayouts)
end
-- }}}