Como ligar o numpad ao switcher de tags em WM incrível?

3

Em um impressionante WM, descobri que Mod4 + numpad <1-9> não funciona da mesma forma que Mod4 + 1-9 , embora o NumLock esteja ativado. Eu acho que é conveniente usar Mod4 + numpad <1-9> para alternar entre as tags. Como ligar isso?

    
por Vivodo 20.04.2012 / 04:07

1 resposta

5

Eu obtive o mapa de teclas numpad usando xev . Portanto, pode ser fácil mapear o numpad para o alternador de tags da seguinte forma:

-- 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
    
por 24.04.2012 / 15:52