From e81209ca87b1ced392cda08d247138434e3f9ca9 Mon Sep 17 00:00:00 2001 From: Sorky <43520033+Sorky@users.noreply.github.com> Date: Sun, 4 Nov 2018 17:29:33 +1100 Subject: [PATCH] Update theme.lua --- themes/blackburn/theme.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/themes/blackburn/theme.lua b/themes/blackburn/theme.lua index b58d524..fbe6ad1 100644 --- a/themes/blackburn/theme.lua +++ b/themes/blackburn/theme.lua @@ -226,11 +226,11 @@ function theme.at_screen_connect(s) -- We need one layoutbox per screen. s.mylayoutbox = awful.widget.layoutbox(s) s.mylayoutbox:buttons(my_table.join( - awful.button({ }, 1, function () awful.layout.inc( 1) end), - awful.button({ }, 2, function () awful.layout.set( awful.layout.layouts[1] ) end), - awful.button({ }, 3, function () awful.layout.inc(-1) end), - awful.button({ }, 4, function () awful.layout.inc( 1) end), - awful.button({ }, 5, function () awful.layout.inc(-1) end))) + awful.button({}, 1, function () awful.layout.inc( 1) end), + awful.button({}, 2, function () awful.layout.set( awful.layout.layouts[1] ) end), + awful.button({}, 3, function () awful.layout.inc(-1) end), + awful.button({}, 4, function () awful.layout.inc( 1) end), + awful.button({}, 5, function () awful.layout.inc(-1) end))) -- Create a taglist widget s.mytaglist = awful.widget.taglist(s, awful.widget.taglist.filter.all, awful.util.taglist_buttons)