summaryrefslogtreecommitdiffstats
path: root/awesome/.config/awesome/rc.lua
diff options
context:
space:
mode:
Diffstat (limited to 'awesome/.config/awesome/rc.lua')
-rw-r--r--awesome/.config/awesome/rc.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/awesome/.config/awesome/rc.lua b/awesome/.config/awesome/rc.lua
index 93df840..1a10a72 100644
--- a/awesome/.config/awesome/rc.lua
+++ b/awesome/.config/awesome/rc.lua
@@ -132,10 +132,10 @@ end
-- {{{ Tags
-- Define a tag table which hold all screen tags.
tags = {}
-tags[1] = awful.tag({"Emacs"}, 1, awful.layout.suit.tile)
+tags[1] = awful.tag({" Emacs"}, 1, awful.layout.suit.tile)
if screen.count() > 1 then
- tags[2] = awful.tag({"Web"}, 2, awful.layout.suit.max)
+ tags[2] = awful.tag({" Web"}, 2, awful.layout.suit.max)
if screen.count() > 2 then
for s = 3, screen.count() do
@@ -522,7 +522,7 @@ client.connect_signal("manage", function (c, startup)
if awful.rules.match_any(c, { class = imp_classes }) then
tags[c.class] = tags[c.class] or
- awful.tag.add(c.class, {layout = awful.layout.suit.tile})
+ awful.tag.add(" " .. c.class, {layout = awful.layout.suit.tile})
awful.tag.viewonly(tags[c.class])
awful.client.movetotag(tags[c.class], c)
end