আমি একহাতে কীবোর্ড বিন্যাস তৈরি করার চেষ্টা করছি এবং Hyperযখন আমি কিছু কী টিপবো তখন বিশেষ কী তৈরি করতে ব্যবহার করতে চাই ।
উদাহরণস্বরূপ, যখন আমি টিপব Hyper_Lএবং B, আমি এক্সকেবি উত্পাদন করতে চাই XF86AudioRaiseVolume।
সম্পর্কিত প্রাসঙ্গিক অংশগুলি custom_2.kbd
( 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;
};
};
এটি আমার কাছে ঠিক মনে হয় তবে আমি যখন এটি চেষ্টা করি:
~$ 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
(ত্রুটি কোড 1)
এবং এখন আমি আটকে আছি। এই কাজটি কীভাবে করা যায় সে সম্পর্কে কারও কি ধারণা আছে? সমাধান ছাড়াই Hyperঠিক আছে।
সম্পাদন করা
পরিবর্তন করে Superএবং Hyperকরতে Mod4এবং Mod5, যে ত্রুটি দূরে যায়:
~$ 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;
তবে এটি এখনও কাজ করে না:
~$ 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