如何在awesome wm中使用0作為工作區的識別碼?

如何在awesome wm中使用0作為工作區的識別碼?

是否可以用作0Awesome wm 中工作區的識別碼?預設情況下,它只允許從 1 到 9 的mod數字0。理想情況下,它將添加到第 9 個工作區之後,而不是附加到前面。

答案1

假設您來自預設 rc.lua在其中搜尋類似的內容並讓 for 迴圈運行到 10 而不是 9。

-- Bind all key numbers to tags.
-- Be careful: we use keycodes to make it work on any keyboard layout.
-- This should map on the top row of your keyboard, usually 1 to 9.
for i = 1, 9 do

您已經設定了鍵綁定,現在建立一個附加標籤。你可以在某個地方找到類似的東西。將“0”加入到清單中。

awful.tag({ "1", "2", "3", "4", "5", "6", "7", "8", "9"}, s, awful.layout.layouts[1])

相關內容