Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 9th, 2012  |  syntax: None  |  size: 0.43 KB  |  hits: 20  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. -- {{{ Tags
  2.  -- Define a tag table which will hold all screen tags.
  3.  tags = {
  4.    names  = { "main", "www", "skype", "gimp", "office", "im", 7, 8, 9 },
  5.    layout = { layouts[1], layouts[1], layouts[1], layouts[1], layouts[1],
  6.               layouts[1], layouts[1], layouts[1], layouts[1]
  7.  }}
  8.  for s = 1, screen.count() do
  9.      -- Each screen has its own tag table.
  10.      tags[s] = awful.tag(tags.names, s, tags.layout)
  11.  end
  12.  -- }}}