commit 03c1afcdf7a24d15839bc2e3799f9a450965ab08
parent 52eb4747c09906aac6b2430c2364a8cc9a705cce
Author: Daniel Moch <daniel@danielmoch.com>
Date: Mon, 22 Jan 2018 22:33:33 -0500
Awesome: Hew closer to default taglist
Diffstat:
1 file changed, 7 insertions(+), 10 deletions(-)
diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua
@@ -195,16 +195,13 @@ awful.screen.connect_for_each_screen(function(s)
-- set_wallpaper(s) rely on feh
-- Each screen has its own tag table.
- awful.tag.add("www", {
- layout = awful.layout.suit.tile,
- screen = s,
- selected = true,
- })
-
- awful.tag.add("term", {
- layout = awful.layout.suit.max.fullscreen,
- screen = s,
- })
+ awful.tag(
+ {"1", "2", "3", "4", "5", "6", "7", "8", "9"},
+ s,
+ awful.layout.suit.tile
+ )
+
+ awful.tag.find_by_name(s, "2").layout = awful.layout.suit.max.fullscreen
-- Create a promptbox for each screen
s.mypromptbox = awful.widget.prompt()