From 5a4edc57905b27cb8f61ffed390a6f875df8cf2e Mon Sep 17 00:00:00 2001 From: Johannes Findeisen Date: Tue, 7 Jul 2015 05:51:07 +0200 Subject: [PATCH] removed tag 0; 9 are enough... :D --- .config/awesome/rc.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index b5db53f1..bba1a9b5 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -125,7 +125,7 @@ end tags = {} for s = 1, screen.count() do -- Each screen has its own tag table. - tags[s] = awful.tag({ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 }, s, layouts[1]) + tags[s] = awful.tag({ 1, 2, 3, 4, 5, 6, 7, 8, 9 }, s, layouts[1]) end -- }}}