aboutsummaryrefslogtreecommitdiff
path: root/config.dot/awesome.link/tags.lua
diff options
context:
space:
mode:
Diffstat (limited to 'config.dot/awesome.link/tags.lua')
-rw-r--r--config.dot/awesome.link/tags.lua8
1 files changed, 8 insertions, 0 deletions
diff --git a/config.dot/awesome.link/tags.lua b/config.dot/awesome.link/tags.lua
new file mode 100644
index 0000000..e7af107
--- /dev/null
+++ b/config.dot/awesome.link/tags.lua
@@ -0,0 +1,8 @@
+-- {{{ Tags
+-- Define a tag table which hold all screen tags.
+tags = {}
+for s = 1, screen.count() do
+ -- Each screen has its own tag table.
+ tags[s] = awful.tag({ 1, 2, 3, 4, 5, 6, 7, 8, 9 }, s, layouts[1])
+end
+-- }}}