fixed overlapping layout keys
This commit is contained in:
parent
e41d5d491c
commit
1c77b1f210
|
@ -382,9 +382,9 @@ globalkeys = mytable.join(
|
||||||
awful.key({ modkey, "Shift" }, "q", awesome.quit,
|
awful.key({ modkey, "Shift" }, "q", awesome.quit,
|
||||||
{description = "quit awesome", group = "awesome"}),
|
{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"}),
|
{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"}),
|
{description = "decrease master width factor", group = "layout"}),
|
||||||
awful.key({ modkey, "Shift" }, "h", function () awful.tag.incnmaster( 1, nil, true) end,
|
awful.key({ modkey, "Shift" }, "h", function () awful.tag.incnmaster( 1, nil, true) end,
|
||||||
{description = "increase the number of master clients", group = "layout"}),
|
{description = "increase the number of master clients", group = "layout"}),
|
||||||
|
|
|
@ -180,7 +180,7 @@ theme.volume = lain.widget.alsa({
|
||||||
-- Weather
|
-- Weather
|
||||||
--[[ to be set before use
|
--[[ to be set before use
|
||||||
theme.weather = lain.widget.weather({
|
theme.weather = lain.widget.weather({
|
||||||
--APPID =
|
--APPID =
|
||||||
city_id = 2643743, -- placeholder (London)
|
city_id = 2643743, -- placeholder (London)
|
||||||
settings = function()
|
settings = function()
|
||||||
units = math.floor(weather_now["main"]["temp"])
|
units = math.floor(weather_now["main"]["temp"])
|
||||||
|
|
|
@ -281,7 +281,7 @@ local volumewidget = wibox.container.margin(volumebg, dpi(2), dpi(7), dpi(4), dp
|
||||||
-- Weather
|
-- Weather
|
||||||
--[[ to be set before use
|
--[[ to be set before use
|
||||||
theme.weather = lain.widget.weather({
|
theme.weather = lain.widget.weather({
|
||||||
--APPID =
|
--APPID =
|
||||||
city_id = 2643743, -- placeholder (London)
|
city_id = 2643743, -- placeholder (London)
|
||||||
})
|
})
|
||||||
--]]
|
--]]
|
||||||
|
|
|
@ -193,7 +193,7 @@ theme.volume = lain.widget.alsa({
|
||||||
-- Weather
|
-- Weather
|
||||||
--[[ to be set before use
|
--[[ to be set before use
|
||||||
theme.weather = lain.widget.weather({
|
theme.weather = lain.widget.weather({
|
||||||
--APPID =
|
--APPID =
|
||||||
city_id = 2643743, -- placeholder (London)
|
city_id = 2643743, -- placeholder (London)
|
||||||
})
|
})
|
||||||
--]]
|
--]]
|
||||||
|
|
Loading…
Reference in New Issue