From 41968ee029f4d8b4602188c923e5a6e8ccdd3aa3 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Wed, 8 Apr 2015 15:12:32 +0200 Subject: Add space to dynamic group names --- awesome/.config/awesome/rc.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'awesome/.config') 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 -- cgit v1.2.3-54-g00ecf