Declarar una nueva clave modificadora con XKB


12

Estoy tratando de crear un diseño de teclado con una sola mano y quiero usarlo Hyperpara producir teclas especiales cuando presiono algunas teclas.

Por ejemplo, cuando presiono Hyper_Ly B, quiero que XKB produzca XF86AudioRaiseVolume.

Partes relevantes de custom_2.kbd (código completo en http://pastebin.com/gm8cggn3 ):

xkb_keycodes {
    <K_36> = 54;        // b B XF86AudioRaiseVolume
    <K_85> = 133;       // Hyper_L
};

xkb_symbols {
    key <K_36> { type = "HYPER_LEVEL", [ b, B, XF86AudioRaiseVolume ] };
    key <K_85> { type = "ONE_LEVEL", [ Hyper_L ] };
};

xkb_compatibility {
    interpret Hyper_L { action = SetMods(modifiers=Hyper); };
};


xkb_types {
type "HYPER_LEVEL" {
    modifiers= Shift+Hyper;
    map[Shift]= Level2;
    map[Hyper]= Level3;
    map[Shift+Hyper]= Level3;
};
};

Me parece bien, pero cuando lo intento:

~$ xkbcomp custom_2.kbd $DISPLAY
Error:            Identifier "Hyper" of type int is unknown
Error:            Key type mask field must be a modifier mask
                  Key type definition ignored
Warning:          Map entry for unused modifiers in HYPER_LEVEL
                  Using none instead of Shift
Error:            Identifier "Hyper" of type int is unknown
Error:            The key type map entry field must be a modifier mask
                  Ignoring illegal assignment in HYPER_LEVEL
Error:            Identifier "Hyper" of type int is unknown
Error:            The key type map entry field must be a modifier mask
                  Ignoring illegal assignment in HYPER_LEVEL
 -> 1

(el código de error es 1)

Y ahora estoy atascado. ¿Alguien tiene una idea de cómo hacer que esto funcione? Una solución sin Hyperestá bien.

Editar

Al cambiar Supery Hyperhacia Mod4y Mod5, ese error desaparece:

~$ xkbcomp custom_3.kbd
( no output )

~$ diff custom_{2,3}.kbd
188,190c188,190
<         interpret Super_L { action = SetMods(modifiers=Super); };
<         interpret Hyper_L { action = SetMods(modifiers=Hyper); };
<     }c;
---
>         interpret Super_L { action = SetMods(modifiers=Mod4); };
>         interpret Hyper_L { action = SetMods(modifiers=Mod5); };
>     };
204c204
<             modifiers= Shift+Hyper;
---
>             modifiers= Shift+Mod5;
206,207c206,207
<             map[Hyper]= Level3;
<             map[Shift+Hyper]= Level3;
---
>             map[Mod5]= Level3;
>             map[Shift+Mod5]= Level3;

Sin embargo, todavía no funciona:

~$ xkbcomp custom_3.kbd $DISPLAY 
Error:            success in unknown
                  Couldn't write keyboard description to :0.0
X Error of failed request:  BadValue (integer parameter out of range for operation)
  Major opcode of failed request:  135 (XKEYBOARD)
  Minor opcode of failed request:  9 (XkbSetMap)
  Value in failed request:  0x8010202
  Serial number of failed request:  12
  Current serial number in output stream:  14
 -> 1 

Respuestas:


9

Todavía tengo algunos problemas (creo que no están relacionados) con XKB, pero tengo un modificador Hyper asignado, y creo que la configuración relevante es la siguiente:

compat:

virtual_modifiers Shift,Control,Meta,Super,Hyper,AltGr;

interpret Hyper_R { action = SetMods(modifiers=Mod4); };

símbolos:

modifier_map Mod4 { <DELE> }; // Hyper
key <DELE>  { type="UNMODIFIED", [ Hyper_R ], repeat=no  };

entonces algo como

key <K_36> { type = "SHIFT+HYPER", [ b, B, 
                                XF86AudioRaiseVolume, XF86AudioRaiseVolume ] };

tipos

virtual_modifiers Meta,AltGr,Super,Hyper,Mod5;

no necesita el Mod5 allí a menos que lo esté usando también; pero del mismo modo, omita Shift & Control aquí ...

type "SHIFT+HYPER" {
    modifiers= Shift+Hyper;
    map[Shift]= Level2;
    map[Hyper]= Level3;
    map[Shift+Hyper]= Level4;
};

Por lo que vale, tuve problemas mucho, mucho peores tratando de redefinir la geometría y los códigos clave de lo que valía, y terminé volviendo a los pc105símbolos clave en <AE01>forma, a pesar de que muchos de ellos están ridículamente mal nombrados. (por ejemplo, <DELE>para mi clave Hyper)

PD. Para ver un ejemplo de trabajo, consulte https://github.com/brpocock/spacey-cadet-keyboard ...


Muchas gracias. Todavía estoy resolviendo algunas cosas, ¡pero funciona muy bien!
Lennart_96
Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.