logo

oasis-root

Compiled tree of Oasis Linux based on own branch at <https://hacktivis.me/git/oasis/> git clone https://anongit.hacktivis.me/git/oasis-root.git

il (16701B)


  1. // This is an implemetation of the Israeli standard SI-1452 (2013)
  2. // It does not implement changes to the English layout, as that part
  3. // of the standard is not normative nor really useful in the context
  4. // of xkb.
  5. // This implementation extends the standard with Yiddish digraphs
  6. // (a common extension) and Nun Hafukha (a fun character).
  7. default partial alphanumeric_keys
  8. xkb_symbols "basic" {
  9. // uses the kbd layout in use in Israel.
  10. name[Group1]= "Hebrew";
  11. key.type[Group1] = "FOUR_LEVEL_SEMIALPHABETIC";
  12. key <AB01> { [ hebrew_zain, Z ] };
  13. key <AB02> { [ hebrew_samech, X, U05B6 ] }; // Segol
  14. key <AB03> { [ hebrew_bet, C, U05B1 ] }; // Hataf Segol
  15. key <AB04> { [ hebrew_he, V ] };
  16. key <AB05> { [ hebrew_nun, B, NoSymbol, U05C6 ]}; // Nun Hafukha
  17. key <AB06> { [ hebrew_mem, N ] };
  18. key <AB07> { [ hebrew_zade, M, U05B5 ] }; // Tsere
  19. key <AB08> { [ hebrew_taw, greater, rightsinglequotemark ]}; // greater Mirrored
  20. key <AB09> { [ hebrew_finalzade, less, singlelowquotemark ]}; // less Mirrored
  21. key <AC01> { [ hebrew_shin, A, U05B0 ] }; // Shva
  22. key <AC02> { [ hebrew_dalet,S, U05BC ] }; // Dagesh
  23. key <AC03> { [ hebrew_gimel,D ] };
  24. key <AC04> { [ hebrew_kaph, F ] };
  25. key <AC05> { [ hebrew_ayin, G, U05F1 ] }; // Yiddish Vav Yod
  26. key <AC06> { [ hebrew_yod, H, U05F2 ] }; // Yiddish Double Yod
  27. key <AC07> { [ hebrew_chet, J, U05B4 ] }; // Hiriq
  28. key <AC08> { [ hebrew_lamed, K ] };
  29. key <AC09> { [ hebrew_finalkaph, L, rightdoublequotemark ]};
  30. key <AC10> { [ hebrew_finalpe, colon, doublelowquotemark ]};
  31. key <AD01> { [ slash, Q, U05C2 ] }; // Sin Dot
  32. key <AD02> { [ apostrophe, W, U05C1 ] }; // Shin Dot
  33. key <AD03> { [ hebrew_qoph, E, U05B8 ] }; // Qamats
  34. key <AD04> { [ hebrew_resh, R, U05B3 ] }; // Hataf Qamats
  35. key <AD05> { [ hebrew_aleph,T ] };
  36. key <AD06> { [ hebrew_tet, Y, U05F0 ] }; // Yiddish Double Vav
  37. key <AD07> { [ hebrew_waw, U, U05B9 ] }; // Holam
  38. key <AD08> { [ hebrew_finalnun, I ] };
  39. key <AD09> { [ hebrew_finalmem, O ] };
  40. key <AD10> { [ hebrew_pe, P, U05B7 ] }; // Patah
  41. key.type[Group1] = "FOUR_LEVEL";
  42. // Non-alphanumeric keys
  43. key <AB10> { [ period, question, division ]};
  44. key <AC11> { [ comma, quotedbl, U05F4] }; // Gershayim
  45. key <AD11> { [ bracketright, braceright, U05B2 ]}; // Mirrored; Hataf Patah
  46. key <AD12> { [ bracketleft, braceleft, U05BF ]}; // Mirrored; Rafe
  47. key <BKSL> { [ backslash, bar, U05BB ] }; // Qubuts
  48. // Top (digits) row
  49. key <TLDE> { [ semicolon, asciitilde, U05F3 ]}; // Geresh
  50. key <AE01> { [ 1, exclam ] };
  51. key <AE02> { [ 2, at ] };
  52. key <AE03> { [ 3, numbersign, EuroSign ]};
  53. key <AE04> { [ 4, dollar, NewSheqelSign ]};
  54. key <AE05> { [ 5, percent, degree ]};
  55. key <AE06> { [ 6, asciicircum, U05AB ]}; // Hebrew Accent Ole
  56. key <AE07> { [ 7, ampersand, U05BD ]}; // Meteg
  57. key <AE08> { [ 8, asterisk, multiply]};
  58. key <AE09> { [ 9, parenright, U200E ]}; // LRM; Paren Mirrored
  59. key <AE10> { [ 0, parenleft, U200F ]}; // RLM; Paren Mirrored
  60. key <AE11> { [ minus, underscore, U05BE ]}; // Maqaf
  61. key <AE12> { [ equal, plus, endash ]};
  62. include "level3(ralt_switch)"
  63. };
  64. // nikud patter based on Dekel Tsur's Hebrew mapping for LyX
  65. partial alphanumeric_keys
  66. xkb_symbols "lyx" {
  67. name[Group1]= "Hebrew (lyx)";
  68. key <TLDE> { [ semicolon, asciitilde ] };
  69. // On some key (e.g. AD01, right below) there is not yet mapping for the
  70. // second shift level. Since I could not figure a simple way to map this
  71. // to "emit nothing", it is currently mapped to the same letter of the
  72. // first shift level (avoiding mapping may risk it be used by a character
  73. // from a different group).
  74. key <AD01> { [ slash, slash ] };
  75. key <AD02> { [ apostrophe, apostrophe ] };
  76. key <AD03> { [ hebrew_qoph, 0x10005b8 ] }; // Qamats
  77. key <AD04> { [ hebrew_resh, 0x10005bc ] }; // Dagesh/Shuruq
  78. key <AD05> { [ hebrew_aleph, 0x100200e ] }; // LRM
  79. key <AD06> { [ hebrew_tet, 0x100200f ] }; // RLM
  80. key <AD07> { [ hebrew_waw, 0x10005b9 ] }; // Holam
  81. key <AD08> { [ hebrew_finalnun,hebrew_finalnun] };
  82. key <AD09> { [ hebrew_finalmem,hebrew_finalmem] };
  83. key <AD10> { [ hebrew_pe, 0x10005b7 ] }; // Patah
  84. key <AC01> { [ hebrew_shin, 0x10005b0 ] }; // Sheva
  85. key <AC02> { [ hebrew_dalet, 0x10005bc ] }; // Dagesh/Shuruq
  86. key <AC03> { [ hebrew_gimel, hebrew_gimel ] };
  87. key <AC04> { [ hebrew_kaph, hebrew_kaph ] };
  88. key <AC05> { [ hebrew_ayin, 0x10005c2 ] }; // Sin dot
  89. key <AC06> { [ hebrew_yod, 0x10005c1 ] }; // Shin dot
  90. key <AC07> { [ hebrew_chet, 0x10005b4 ] }; // Hiriq
  91. key <AC08> { [ hebrew_lamed, 0x10020aa ] }; // NIS
  92. key <AC09> { [ hebrew_finalkaph,hebrew_finalkaph] };
  93. key <AC10> { [ hebrew_finalpe, colon ] };
  94. key <AC11> { [ comma, quotedbl ] };
  95. key <AB01> { [ hebrew_zain, hebrew_zain ] };
  96. key <AB02> { [ hebrew_samech,0x10005b6 ] }; // Segol
  97. key <AB03> { [ hebrew_bet, 0x10005bb ] }; // Qubuts
  98. key <AB04> { [ hebrew_he, 0x10005b1 ] }; // H. Segol
  99. key <AB05> { [ hebrew_nun, 0x10005b2 ] }; // H. Patah
  100. key <AB06> { [ hebrew_mem, 0x10005b3 ] }; // H. Qamats
  101. key <AB07> { [ hebrew_zade, 0x10005b5 ] }; // Tsere
  102. key <AB08> { [ hebrew_taw, greater ] };
  103. key <AB09> { [ hebrew_finalzade, less ] };
  104. key <AB10> { [ period, question ] };
  105. // Note the parens mirroring below:
  106. key <AD11> { [ bracketright, braceright ] };
  107. key <AD12> { [ bracketleft, braceleft ] };
  108. key <AE01> { [ 1, exclam ]};
  109. key <AE02> { [ 2, at ]};
  110. key <AE03> { [ 3, numbersign ]};
  111. key <AE04> { [ 4, dollar ]};
  112. key <AE05> { [ 5, percent ]};
  113. key <AE06> { [ 6, asciicircum ]};
  114. key <AE07> { [ 7, ampersand ]};
  115. key <AE08> { [ 8, asterisk ]};
  116. key <AE09> { [ 9, parenright ]};
  117. key <AE10> { [ 0, parenleft ]};
  118. key <AE11> { [ minus , 0x10005be ] }; // H. Hiphen
  119. key <AE12> { [ equal , plus ] };
  120. };
  121. partial alphanumeric_keys
  122. xkb_symbols "phonetic" {
  123. include "il(basic)"
  124. name[Group1]= "Hebrew (phonetic)";
  125. // Implements the phonetic layout from the old Slackware 'il.map' file.
  126. key <AE09> { [ 9, parenleft ] };
  127. key <AE10> { [ 0, parenright ] };
  128. key <TLDE> { [ grave, asciitilde ] };
  129. key <AD11> { [ bracketleft, braceleft ] };
  130. key <AD12> { [ bracketright, braceright ] };
  131. key <AC10> { [ semicolon, colon ] };
  132. key <AC11> { [ apostrophe, quotedbl ] };
  133. key <AB08> { [ comma, less ] };
  134. key <AB09> { [ period, greater ] };
  135. key <AB10> { [ slash, question ] };
  136. key <BKSL> { [ backslash, bar ] };
  137. key <LatQ> { [ hebrew_qoph, hebrew_qoph ] };
  138. key <LatW> { [ hebrew_waw, hebrew_waw ] };
  139. key <LatE> { [ hebrew_aleph, hebrew_aleph ] };
  140. key <LatR> { [ hebrew_resh, hebrew_resh ] };
  141. key <LatT> { [ hebrew_taw, hebrew_tet ] };
  142. key <LatY> { [ hebrew_ayin, hebrew_ayin ] };
  143. key <LatU> { [ hebrew_waw, hebrew_waw ] };
  144. key <LatI> { [ hebrew_yod, hebrew_yod ] };
  145. key <LatO> { [ hebrew_samech, hebrew_samech ] };
  146. key <LatP> { [ hebrew_pe, hebrew_finalpe ] };
  147. key <LatA> { [ hebrew_aleph, hebrew_aleph ] };
  148. key <LatS> { [ hebrew_shin, hebrew_shin ] };
  149. key <LatD> { [ hebrew_dalet, hebrew_dalet ] };
  150. key <LatF> { [ hebrew_pe, hebrew_finalpe ] };
  151. key <LatG> { [ hebrew_gimel, hebrew_gimel ] };
  152. key <LatH> { [ hebrew_he, hebrew_he ] };
  153. key <LatJ> { [ hebrew_yod, hebrew_yod ] };
  154. key <LatK> { [ hebrew_kaph, hebrew_finalkaph ] };
  155. key <LatL> { [ hebrew_lamed, hebrew_lamed ] };
  156. key <LatZ> { [ hebrew_zain, hebrew_zain ] };
  157. key <LatX> { [ hebrew_chet, hebrew_chet ] };
  158. key <LatC> { [ hebrew_zade, hebrew_finalzade ] };
  159. key <LatV> { [ hebrew_waw, hebrew_waw ] };
  160. key <LatB> { [ hebrew_bet, hebrew_bet ] };
  161. key <LatN> { [ hebrew_nun, hebrew_finalnun ] };
  162. key <LatM> { [ hebrew_mem, hebrew_finalmem ] };
  163. };
  164. // The 'Biblical Hebrew' keyboard layout as defined by Tiro for use with the
  165. // 'SBL Hebrew' font was added 2006.11.13 by Sebastian J. Bronner
  166. // <waschtl@sbronner.com>. Its primary features (as compared to the lyx layout)
  167. // are that the consonants are in the Israeli standard positions, that a great
  168. // multitude of glyphs can be input directly from the keyboard, and that it is
  169. // the closest thing to a standard layout a theologian can hope for.
  170. // Documentation (including printable keyboard tables), SBL Hebrew font, and
  171. // keyboard layout for Windows are available at
  172. // http://www.sbl-site.org/Resources/Resources_BiblicalFonts.aspx.
  173. //
  174. // It is of interest that the 'basic' layout defined first in this file (as
  175. // ships with x.org disagrees in the non-consonant characters that the Tiro-
  176. // layout claims to be the Israeli standard. Tiros apparent diligence in the
  177. // PDF-documentation accompanying the keyboard-layout-files lead me to put
  178. // greater stock in their claim than in this file. Therefore, the 'biblical'
  179. // layout below does not include 'il(basic)' but redoes the _whole_ thing from
  180. // scratch.
  181. partial alphanumeric_keys
  182. xkb_symbols "biblical" {
  183. name[Group1]= "Hebrew (Biblical, Tiro)";
  184. key.type[Group1] = "FOUR_LEVEL_SEMIALPHABETIC";
  185. key <TLDE> { [ U05C3, U05AE, semicolon, asciitilde ] };
  186. key <AE01> { [ 1, U05A9, VoidSymbol, exclam ] };
  187. key <AE02> { [ 2, U0599, VoidSymbol, at ] };
  188. key <AE03> { [ 3, U0592, VoidSymbol, numbersign ] };
  189. key <AE04> { [ 4, U05AF, NewSheqelSign, dollar ] };
  190. key <AE05> { [ 5, U05BA, U200D, percent ] };
  191. key <AE06> { [ 6, U05B9, U200C, asciicircum ] };
  192. key <AE07> { [ 7, U05BF, U034F, ampersand ] };
  193. key <AE08> { [ 8, U05C2, U200E, asterisk ] };
  194. key <AE09> { [ 9, U05C1, U200F, parenright ] };
  195. key <AE10> { [ 0, U059D, U25CC, parenleft ] };
  196. key <AE11> { [ U05BE, U05A0, minus, underscore ] };
  197. key <AE12> { [ equal, U05BC, VoidSymbol, plus ] };
  198. key <AD01> { [ U0307, U05C4, U0308, slash ] };
  199. key <AD02> { [ U05F3, U05AC, U05F4, apostrophe ] };
  200. key <AD03> { [ hebrew_qoph, U05AB, U20AC ] };
  201. key <AD04> { [ hebrew_resh, U059F ] };
  202. key <AD05> { [ hebrew_aleph, U0593 ] };
  203. key <AD06> { [ hebrew_tet, U059E ] };
  204. key <AD07> { [ hebrew_waw, U059C, U05F0 ] };
  205. key <AD08> { [ hebrew_finalnun, U05A1 ] };
  206. key <AD09> { [ hebrew_finalmem, U0595 ] };
  207. key <AD10> { [ hebrew_pe, U0594 ] };
  208. key <AD11> { [ bracketright, U0597, VoidSymbol, braceright ] };
  209. key <AD12> { [ bracketleft, U0598, VoidSymbol, braceleft ] };
  210. key <BKSL> { [ U05C0, U05A8, backslash, bar ] };
  211. key <AC01> { [ hebrew_shin, U05BD ] };
  212. key <AC02> { [ hebrew_dalet, U05B0 ] };
  213. key <AC03> { [ hebrew_gimel, U05BB ] };
  214. key <AC04> { [ hebrew_kaph, U05B4 ] };
  215. key <AC05> { [ hebrew_ayin, U05B1 ] };
  216. key <AC06> { [ hebrew_yod, U05B6, U05F2 ] };
  217. key <AC07> { [ hebrew_chet, U05B5, U05F1 ] };
  218. key <AC08> { [ hebrew_lamed, U05B3 ] };
  219. key <AC09> { [ hebrew_finalkaph, U05B8, U05C7 ] };
  220. key <AC10> { [ hebrew_finalpe, U05B2, VoidSymbol, colon ] };
  221. key <AC11> { [ U059a, U05B7, comma, quotedbl ] };
  222. key <AB01> { [ hebrew_zain, U05C5 ] };
  223. key <AB02> { [ hebrew_samech, U05A4 ] };
  224. key <AB03> { [ hebrew_bet, U05AA, U05A2 ] };
  225. key <AB04> { [ hebrew_he, U05A6 ] };
  226. key <AB05> { [ hebrew_nun, U05A5, U05C6 ] };
  227. key <AB06> { [ hebrew_mem, U05A7 ] };
  228. key <AB07> { [ hebrew_zade, U059B ] };
  229. key <AB08> { [ hebrew_taw, U0591, VoidSymbol, greater ] };
  230. key <AB09> { [ hebrew_finalzade, U0596, VoidSymbol, less ] };
  231. key <AB10> { [ U05AD, U05A3, period, question ] };
  232. key <SPCE> { [ space, space, thinspace, nobreakspace ] };
  233. };
  234. // EXTRAS
  235. // Biblical hebrew (SIL) US Standard layout version 1.5
  236. // This map is based closely on v 1.5 of the standard. The only deviation being the replacement of the composite characters sin and shin
  237. // by their more recent Unicodev6 counterparts
  238. // this map contains all the characters found in Biblical annotation, masoretic and Dead Sea Scroll related work.
  239. // The layout corresponds phonetically to a US standard layout or similar (Qwerty).
  240. // If you are using an actual Hebrew keyboard, you are probably better off using a Tiro compliant scholarly layout
  241. // This linux port created and maintained by Dennis Meulensteen, dennis@meulensteen.nl
  242. partial alphanumeric_keys
  243. xkb_symbols "biblicalSIL" {
  244. name[Group1]= "Hebrew (Biblical, SIL phonetic)";
  245. key.type[Group1] = "FOUR_LEVEL_SEMIALPHABETIC";
  246. key <TLDE> { [ U20AC, U20AA, U0024 ] }; //Euro, Shekel, Dollar -
  247. key <AE01> { [ 1, U0021, U05BD, U0597 ] }; //1, exclamation meteg revia
  248. key <AE02> { [ 2, U0598, U05A2, U05AE ] }; //2, zarqa atn. hafukh zinor
  249. key <AE03> { [ 3, U05A8, U0596, U0599 ] }; //3, qadma tipeha pashta
  250. key <AE04> { [ 4, U059C, U05A5, U05A0 ] }; //4, geresh merkha tel. gedola
  251. key <AE05> { [ 5, U059E, U05A6, U05A9 ] }; //5, gershayim mer. kefula tel qetana
  252. key <AE06> { [ 6, VoidSymbol, U05AD, U059F ] }; //6, - dehi qar. para
  253. key <AE07> { [ 7, U05AC, U05A3, U05A1 ] }; //7, iluy munah pazer
  254. key <AE08> { [ 8, U059D, U059B, U0595 ] }; //8, g. muqdam tevir zaq. gadol
  255. key <AE09> { [ 9, parenright, U05A7, U0593 ] }; //9, parenth.R darqa shalshelet
  256. key <AE10> { [ 0, parenleft, U05AA, U05AF ] }; //0, parenth.L yer. ben yomo masora c.
  257. key <AE11> { [ U05BE, U2013, U2014, U05BF ] }; //Maqaf, en dash em dash rafe
  258. key <AE12> { [ U05BC, VoidSymbol, U0591, U25CC ] }; //Dagesh - etnahta mark base
  259. key <AD01> { [ hebrew_qoph, U0597 ] }; //Qof revia - -
  260. key <AD02> { [ hebrew_waw] }; //waw - - -
  261. key <AD03> { [ U05B6, U05B5, VoidSymbol, U05B1 ] }; //segol tsere - hat. segol
  262. key <AD04> { [ hebrew_resh ] }; //resh - - -
  263. key <AD05> { [ hebrew_taw ] }; //taw - - -
  264. key <AD06> { [ hebrew_yod, U059F ] }; //jod qar. para - -
  265. key <AD07> { [ U05BB] }; //quibuts - - -
  266. key <AD08> { [ U05B4 ] }; //hiriq, - - -
  267. key <AD09> { [ U05B9, U05BA, U05C7, U05B3 ] }; //holam, holam(wav) qam. qatan hat. Qamats
  268. key <AD10> { [ hebrew_pe, hebrew_finalpe, VoidSymbol, U034F ] }; //pe final pe - c. grapheme joiner
  269. key <AD11> { [ bracketright, braceright, VoidSymbol, U0594 ] }; //Bracket R brace R - zaq. qatan
  270. key <AD12> { [ bracketleft, braceleft, U059A, U0592 ] }; //Brachket L brace L yetiv segolta
  271. key <BKSL> { [ U05C0, U05C0, U05A4, U05AB ] };//Paseq Paseq mahapakh ole
  272. key <AC01> { [ U05B7, U05B8, U05C7, U05B2 ] }; //patah Qamats Qam. Qatan hat. patah
  273. key <AC02> { [ hebrew_samech, U05E9 ] }; //Samech, shin no dot - -
  274. key <AC03> { [ hebrew_dalet ] }; //dalet - - -
  275. key <AC04> { [ UFB2B, hebrew_shin, U05C2 ] }; //UCSv6 Sin shin (nodot) sindot -
  276. key <AC05> { [ hebrew_gimel, VoidSymbol, U25E6, U2022 ] }; //gimel - bullet(DSS) bulletfill (DSS)
  277. key <AC06> { [ hebrew_he, VoidSymbol, U0336, U030A ] };//he - strikeout(DSS) Ring Above(DSS)
  278. key <AC07> { [ UFB2A, hebrew_shin, U05C1] }; //UCSv6 Shin shin (nodot) shindot -
  279. key <AC08> { [ hebrew_kaph, hebrew_finalkaph ] }; //kaph Final kaph -
  280. key <AC09> { [ hebrew_lamed, VoidSymbol ] }; //lamed - -
  281. key <AC10> { [ U05B0, U05F4, semicolon, U05C3 ] }; //sva gers. p semicolon sof pasuq
  282. key <AC11> { [ U2019, U201D, U0323, U05C4 ] };//QuoteRight double R Quote punctum punctum Above
  283. key <AB01> { [ hebrew_zain ] }; //Zayin - -
  284. key <AB02> { [ hebrew_chet ] }; //chet - -
  285. key <AB03> { [ hebrew_zade, U05E5 ] }; // tzade, final tzade -
  286. key <AB04> { [ hebrew_tet ] }; //tet - -
  287. key <AB05> { [ hebrew_bet ] }; //bet - -
  288. key <AB06> { [ hebrew_nun, hebrew_finalnun ] }; //nun, final nun
  289. key <AB07> { [ hebrew_mem, hebrew_finalmem, U200C, U200D ] }; //mem, final mem 0.wid.non.join. 0.wid.joiner
  290. key <AB08> { [ comma, U05E2, guillemotleft, U0307 ] }; //comma, ayin guillemetR masora dot
  291. key <AB09> { [ period, U05D0, guillemotright, U0308 ] }; //period, alef guillemetL thousands
  292. key <AB10> { [ slash, question, U05F3 ] }; //slash question geresh P
  293. key <SPCE> { [ space, space, thinspace, nobreakspace ] };//space space thin space, nbsp
  294. include "level3(ralt_switch)"
  295. };