feat: floating windows are always on top
This commit is contained in:
parent
a474934957
commit
5262fc9a5b
@ -368,7 +368,6 @@ globalkeys = gears.table.join(
|
|||||||
end,
|
end,
|
||||||
{description = "take a rectangular screenshot", group = "shortcut"}
|
{description = "take a rectangular screenshot", group = "shortcut"}
|
||||||
)
|
)
|
||||||
|
|
||||||
)
|
)
|
||||||
|
|
||||||
clientkeys =
|
clientkeys =
|
||||||
@ -390,7 +389,10 @@ clientkeys =
|
|||||||
),
|
),
|
||||||
awful.key(
|
awful.key(
|
||||||
{modkey}, "space",
|
{modkey}, "space",
|
||||||
awful.client.floating.toggle,
|
function (c)
|
||||||
|
c.floating = not c.floating
|
||||||
|
c.ontop = c.floating
|
||||||
|
end,
|
||||||
{description = "toggle floating", group = "client"}
|
{description = "toggle floating", group = "client"}
|
||||||
),
|
),
|
||||||
awful.key(
|
awful.key(
|
||||||
|
Loading…
Reference in New Issue
Block a user