Last tag for chats shoud have "fair" layout.

This commit is contained in:
Kolan Sh 2017-07-14 02:03:44 +03:00
parent acfc4f354c
commit 54aa287427
1 changed files with 6 additions and 1 deletions

7
rc.lua
View File

@ -390,7 +390,12 @@ awful.screen.connect_for_each_screen(function(s)
set_wallpaper(s)
-- Each screen has its own tag table.
awful.tag({ "1", "2", "3", "4", "5", "6", "7", "8", "9", "0", "-", "+" }, s, awful.layout.layouts[4])
awful.tag({ "1", "2", "3", "4", "5", "6", "7", "8", "9", "0", "-" }, s, awful.layout.layouts[4])
awful.tag.add("+", {
--icon = "/path/to/icon.png",
layout = awful.layout.suit.fair,
screen = s,
})
-- Create a promptbox for each screen
s.mypromptbox = awful.widget.prompt()