fixed overlapping layout keys

This commit is contained in:
Luca Capezzuto 2021-04-13 14:42:40 +02:00
parent e41d5d491c
commit 1c77b1f210
4 changed files with 5 additions and 5 deletions

View File

@ -382,9 +382,9 @@ globalkeys = mytable.join(
awful.key({ modkey, "Shift" }, "q", awesome.quit,
{description = "quit awesome", group = "awesome"}),
awful.key({ modkey, }, "l", function () awful.tag.incmwfact( 0.05) end,
awful.key({ modkey, altkey }, "l", function () awful.tag.incmwfact( 0.05) end,
{description = "increase master width factor", group = "layout"}),
awful.key({ modkey, }, "h", function () awful.tag.incmwfact(-0.05) end,
awful.key({ modkey, altkey }, "h", function () awful.tag.incmwfact(-0.05) end,
{description = "decrease master width factor", group = "layout"}),
awful.key({ modkey, "Shift" }, "h", function () awful.tag.incnmaster( 1, nil, true) end,
{description = "increase the number of master clients", group = "layout"}),

View File

@ -180,7 +180,7 @@ theme.volume = lain.widget.alsa({
-- Weather
--[[ to be set before use
theme.weather = lain.widget.weather({
--APPID =
--APPID =
city_id = 2643743, -- placeholder (London)
settings = function()
units = math.floor(weather_now["main"]["temp"])

View File

@ -281,7 +281,7 @@ local volumewidget = wibox.container.margin(volumebg, dpi(2), dpi(7), dpi(4), dp
-- Weather
--[[ to be set before use
theme.weather = lain.widget.weather({
--APPID =
--APPID =
city_id = 2643743, -- placeholder (London)
})
--]]

View File

@ -193,7 +193,7 @@ theme.volume = lain.widget.alsa({
-- Weather
--[[ to be set before use
theme.weather = lain.widget.weather({
--APPID =
--APPID =
city_id = 2643743, -- placeholder (London)
})
--]]