顯然可以將客戶端視窗移動到另一個標籤,但是可以將客戶端視窗分配給多個標籤嗎?
考慮有一個小浮動視窗的情況,該視窗被切換以使其保持在頂部。我想將它分配給所有標籤,以便無論活動標籤如何,它都可見。
客戶端屬性稱為sticky
。連結到很棒的文件。將此添加到您的rc.lua
:
awful.key({ modkey, "Control" }, "s", function (c) c.sticky = not c.sticky end,
{description="toggle sticky", group="client"}),
引用自:https://unix.stackexchange.com/questions/467096