// Lukas Karrer lkarrer@trash.net // Note: This file has been created from various definitions // I am not sure at all if........ // 06.07.2000 // Andreas Tobler a.tobler@schweiz.ch // modified for Swiss German Apple Extended Keyboard II // added some more keys and changed Meta_L vs. Mode_Switch // to match real apple mapping xkb_symbols "extended" { name[Group1]= "Swiss German Apple Extended Keyboard II"; key { [ Escape ] }; // Alphanumeric section key { [ less, greater ], [ lessthanequal, greaterthanequal ] }; key { [ section, degree ] }; key { [ 1, plus ], [ plusminus, onesuperior ] }; key { [ 2, quotedbl ], [ twosuperior, oneeighth ] }; key { [ 3, asterisk ], [ numbersign, threesuperior ] }; key { [ 4, ccedilla ], [ Ccedilla ] }; key { [ 5, percent ], [ bracketleft ] }; key { [ 6, ampersand ], [ bracketright ] }; key { [ 7, slash ], [ bar, backslash ] }; key { [ 8, parenleft ], [ braceleft, Ograve ] }; key { [ 9, parenright ], [ braceright, Ocircumflex ] }; key { [ 0, equal ], [ notequal, Uacute ] }; key { [ apostrophe, question ], [ questiondown ] }; key { [ asciicircum, grave ], [ dead_acute,asciitilde ] }; key { [ BackSpace ] }; key { [ Tab, ISO_Left_Tab ] }; key { [ q, Q ] }; key { [ w, W ], [ Greek_SIGMA, Aacute ] }; key { [ e, E ], [ trademark, Ediaeresis ] }; key { [ r, R ], [ registered, Egrave ] }; key { [ t, T ], [ dagger, Icircumflex ] }; key { [ z, Z ], [ Greek_OMEGA, Iacute ] }; key { [ u, U ], [ degree, Ugrave ] }; key { [ i, I ], [ exclamdown ] }; key { [ o, O ], [ oslash ] }; key { [ p, P ], [ Greek_pi, Greek_PI ] }; key { [ udiaeresis, egrave ], [ section, ydiaeresis ] }; key { [ dead_diaeresis, exclam ], [ quoteleft, quoteright ] }; key { [ dollar, sterling ], [ paragraph, enfilledcircbullet ] }; key { [ Caps_Lock ] }; key { [ a, A ], [ aring, Aring ] }; key { [ s, S ], [ ssharp ] }; key { [ d, D ], [ Greek_delta ] }; key { [ f, F ], [ section, doubledagger ] }; key { [ g, G ], [ at, comma ] }; key { [ h, H ], [ ordfeminine, periodcentered ] }; key { [ j, J ], [ masculine] }; key { [ k, K ] }; key { [ l, L ], [ notsign ] }; key { [ odiaeresis, eacute ], [ cent ] }; key { [ adiaeresis, agrave ], [ ae, AE ] }; key { [ Return ] }; key { [ y, Y ], [ yen, Ydiaeresis ] }; key { [ x, X ], [ similarequal, ydiaeresis ] }; key { [ c, C ], [ copyright, diamond ] }; key { [ v, V ] }; key { [ b, B ], [ ssharp ] }; key { [ n, N ], [ dead_tilde ] }; key { [ m, M ], [ mu ] }; key { [ comma, semicolon ], [ guillemotleft, guillemotright ] }; key { [ period, colon ], [ Nosymbol, division ] }; key { [ minus, underscore ], [ emdash, endash ] }; key { [ space ], [nobreakspace, nobreakspace ] }; // End alphanumeric section // Begin "Keypad" section key { [ Num_Lock ] }; key { [ KP_Equal ] }; key { [ KP_Divide ] }; key { [ KP_Multiply ] }; key { [ KP_7 ] }; key { [ KP_8 ] }; key { [ KP_9 ] }; key { [ KP_Subtract ] }; key { [ KP_4 ] }; key { [ KP_5 ] }; key { [ KP_6 ] }; key { [ KP_Add ] }; key { [ KP_1 ] }; key { [ KP_2 ] }; key { [ KP_3 ] }; key { [ KP_Enter ] }; key { [ KP_0 ] }; key { [ KP_Decimal ] }; // End "Keypad" section // Begin modifier mappings key { [ Mode_switch ] };#Meta_L key { [ Shift_L ] }; key { [ Control_L ] }; key { [ Meta_L ] };#Mode_switch key { [ Meta_R ] }; key { [ Shift_R ] }; key { [ Control_R ] }; key { [ Alt_R ] }; // End modifier mappings // Begin "Function" section key { [ F1 ] }; key { [ F2 ] }; key { [ F3 ] }; key { [ F4 ] }; key { [ F5 ] }; key { [ F6 ] }; key { [ F7 ] }; key { [ F8 ] }; key { [ F9 ] }; key { [ F10 ] }; key { [ F11 ] }; key { [ F12 ] }; key { [ F13, Print ] }; key { [ F14, Scroll_Lock ] }; key { [ F15, Pause ] }; // End "Function" section // Begin "Editing" section key { [ Insert ] }; key { [ Home ] }; key { [ Prior ] }; key { [ Delete ] }; key { [ End ] }; key { [ Next ] }; key { [ Up ] }; key { [ Left ] }; key { [ Down ] }; key { [ Right ] }; // End "Editing" section // begin modifier mappings modifier_map Shift { Shift_L, Shift_R }; modifier_map Lock { Caps_Lock }; modifier_map Control{ Control_L, Control_R }; modifier_map Mod1 { Meta_L, Meta_R }; modifier_map Mod3 { Mode_switch }; // end modifier mappings };