如何在很棒的 WM 中将小键盘绑定到标签切换器?

Viv*_*odo 5 keyboard keyboard-shortcuts awesome-wm

在很棒的 WM 下,我发现即使打开了Mod4 + numpad <1-9>也无法正常工作。我认为在标签之间切换很方便。这个怎么绑定?Mod4 + 1-9NumLockMod4 + numpad <1-9>

Viv*_*odo 7

我通过使用xev. 因此,将小键盘映射到标签切换器可能很容易,如下所示:

-- Numpad: [0-9] = [#90, #87-#89, #83-#85, #79-#81]
local np_map = { 87, 88, 89, 83, 84, 85, 79, 80, 81 }
for i = 1, keynumber do
   globalkeys = awful.util.table.join(
      globalkeys,
      awful.key({ modkey }, "#" .. np_map[i],
        function ()
           local screen = mouse.screen
           if tags[screen][i] then
              awful.tag.viewonly(tags[screen][i])
           end
        end),
      awful.key({ modkey, "Control" }, "#" .. np_map[i],
        function ()
           local screen = mouse.screen
           if tags[screen][i] then
              awful.tag.viewtoggle(tags[screen][i])
           end
        end),
      awful.key({ modkey, "Shift" }, "#" .. np_map[i],
        function ()
           if client.focus and tags[client.focus.screen][i] then
              awful.client.movetotag(tags[client.focus.screen][i])
           end
        end),
      awful.key({ modkey, "Control", "Shift" }, "#" .. np_map[i],
        function ()
           if client.focus and tags[client.focus.screen][i] then
              awful.client.toggletag(tags[client.focus.screen][i])
           end
        end))
end
Run Code Online (Sandbox Code Playgroud)