- -- {{{ Tags
- -- Define a tag table which will hold all screen tags.
- tags = {
- names = { "main", "www", "skype", "gimp", "office", "im", 7, 8, 9 },
- layout = { layouts[1], layouts[1], layouts[1], layouts[1], layouts[1],
- layouts[1], layouts[1], layouts[1], layouts[1]
- }}
- for s = 1, screen.count() do
- -- Each screen has its own tag table.
- tags[s] = awful.tag(tags.names, s, tags.layout)
- end
- -- }}}