1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
|
#!/bin/bash
# Copyright 2008 Pascal Hauck <pascal.hauck@web.de>
# Distributed under the terms of the GNU General Public License v3
# ======= Installation =======
# Um NEO auf Ihrem System zu (dauerhaft) zu installieren, genügt es, dieses Skript auszuführen
# z.B. in der Konsole die folgenden beiden Zeilen eingeben:
# chmod u+x installation
# ./installation
# Nun ist NEO auf Ihrem System dauerhaft installier
# Ein Wechsel zurück zu QWERTZ ist jederzeit mit ›uiae‹ leicht möglich
# Wenn NEO nicht automatisch nach dem Login gestartet werden soll, genügt es, vor die Zeile, die mit
# asdf # mit einem # am Zeilenanfang
# beginnt und sich in der Datei $HOME/.profile befinden, ein # zu setzen
# ==============================
# ======= Deinstallation =======
# Um NEO wieder zu deinstallieren, kann das Skript ›installiere_neo‹ ein weiteres Mal aufgerufen werden
# ==============================
# ======= Bemerkungen ==========
# Dieses Skript ist eine rudimentäre Installation. Derzeit gibt es keine Konfigurationsmöglichkeit.
# Es wird immer das Standardverzeichnis $HOME/neo verwendet
# Es gibt keine graphische Installation
# Dennoch kann dieses Skrip helfen, NEO auf eine einfache Weise zu installieren.
# Dieses Skript wird mit der Zeit verbessert werden.
# ==============================
# colours in the Bash
B="\033[30m"
R="\033[31m"
G="\033[32m"
datei() { # cut files from the complete file ›installiere_neo‹
grep -A10000 "#neo: $1 --- Beginn" installation | grep -B10000 "#neo: $1 --- Ende" | grep -v "#neo:"
}
erzeuge() { # create directories, files and entries
case $1 in
d) # directory
if [ -d $2 ] # if already exists
then
echo -e "Das Verzeichnis ${R}$2${B} gibt es bereits – wird verwendet…"
else
echo -e "Erstelle $2"
mkdir $2 # create
fi
;;
f) # file
if [ -f $3 ] # if already exists
then
echo -e "Die Datei ${R}$3${B} gibt es bereits – soll die bestehende Datei überschrieben werden? \c"; read -p "[J,N] " -e overwrite
if [ "$overwrite" = "J" ] # overwrite?
then
echo "Datei $3 wird überschrieben!"
rm -f $3 # remove if user wants to overwrite
else
echo -e "Datei ${R}$3${B} gibt es schon → Installation abgebrochen"
exit
fi
fi
echo "Erstelle Datei $3" # create
datei $2 > $3
;;
l) # soft link
if [ -d $HOME/bin/ ] # $HOME/bin has to exist!
then
echo "Verzeichnis $HOME/bin/ gefunden"
else
echo -e "Verzeichnis ${R}$HOME/bin${B} wird erwartet, ist aber nicht vorhanden"
echo "Außerdem wird erwartet, dass /$HOME/bin in der Umgebungsvariable \$PATH ist"
echo "Istallation wird abgebrochen."
exit
fi
if [ -f $HOME/bin/$2 ] # if already exists
then
echo -e "Datei ${R}$HOME/bin/$2${B} gibt es bereits – soll die bestehende Datei überschrieben werden? \c"; read -p "[J,N] " -e overwrite
if [ "$overwrite" = "J" ] # overwrite?
then
echo "Datei $2 wird überschrieben!"
rm -f $HOME/bin/$2 # remove if user wants to overwrite
else
echo -e "Datei ${R}$2${B} gibt es schon → Installation abgebrochen"
exit
fi
fi
echo "Erstelle Link $HOME/bin/$2"
ln -s $HOME/neo/$2 $HOME/bin # create
;;
esac
}
entferne(){ # remove files for uninstall option
echo "Entferne $1"
rm $1 || echo -e "${R}Konnte die Datei $1 nicht entfernen!${B}"
}
deinstall() { #remove all directories, files and entries made by ›installiere_neo‹
echo
echo
rmfromprofile
entferne $HOME/.neorc
entferne $HOME/bin/uiae
entferne $HOME/neo/uiae
entferne $HOME/bin/asdf
entferne $HOME/neo/asdf
entferne $HOME/neo/neo.map
entferne $HOME/neo/neo_de.xmodmap
echo "Entferne $HOME/neo/"
rmdir $HOME/neo/ || echo -e "${R}Konnte das Verzeichenis $HOME/neo/ nicht entfernen!${B}"
}
rmfromprofile() { # remove the entry in $HOME/.profile
grep -v "^\# NEO:$" $HOME/.profile | grep -v "asdf \# mit" > $HOME/profile.neo.tmp
rm /$HOME/.profile
mv $HOME/profile.neo.tmp $HOME/.profile
}
# *** main program ***
clear
echo
echo " *** NEO – Ergonomie und Zeichenvielfalt ***"
echo
echo
echo " Ihr System wird untersucht…"
echo
# check for an existing neo configuration
if [ -f "${NEO_CONFIG}" ]; then
. "${NEO_CONFIG}" || die "Failed to source ${NEO_CONFIG}"
elif [ -f "${HOME}"/.neorc ]; then
. "${HOME}"/.neorc || die "Failed to source ${HOME}/.neorc"
elif [ -f /etc/neo.conf ]; then
. /etc/neo.conf || die "Failed to source /etc/neo.conf"
else
# no configuration file found → install NEO
echo "Bislang gibt es kein vollständig konfiguriertes NEO auf Ihrem System"
echo
echo "Sie haben folgende Möglichkeiten:"
echo
echo " [1] NEO nur testen"
echo " Sie haben die Möglichkeit, NEO zu Testen, ihre Standardbelegung (in der Regel QWERTZ) bleibt erhalten"
echo
echo
echo " [2] NEO als Standardbelegung"
echo " Mit dieser Option wird NEO die neue Standardbelegung für diesen Benutzer und nach (nicht vor!) dem"
echo " Login automatisch aktiviert"
echo
echo
echo -e " Wenn ${G}installiere_neo${B} ein weiteres Mal aufgerufen wird, haben weitere Optionen – z.B. die Deinstallation von NEO"
echo
installoption=""
while [ ! $installoption ] # choose between QWERTZ or NEO as standard
do # switch with ›asdf‹ and ›uiae‹
echo
read -p "Wählen Sie eine Option [1,2]: " -e installoption
case $installoption in
2)
echo
echo "Nach dem Login wird NEO die Standardbelegung sein."
echo -e "Um dies zu ändern, kann ${G}installiere_neo${B} ein weiteres Mal ausgeführt werden."
echo
read -n1 -p "Drücke eine Taste um fortzufahren oder STRG+C zum Abbrechen"
;;
1)
echo
echo "Das Standardlayout wird nich verändert."
echo -e "Zu NEO kann man jederzeit mit der Abrollbewegung ${G}asdf${B} wechseln."
echo
read -n1 -p "Drücke eine Taste um fortzufahren oder STRG+C zum Abbrechen"
;;
*)
echo
echo "Bitte wählen Sie die Optionen 1, um NEO zu testen oder 2, um NEO zur Standardbelegung zu machen"
installoption=""
;;
esac
done
echo
echo
echo " Installation von NEO mit xmodmap wird gestartet…"
echo
echo
# *** main installation process ***
# creating a directory $HOME/neo with NEO files
# linking ›asdf‹ and ›uiae‹ scripts to $HOME/bin
erzeuge d $HOME/neo
erzeuge f xmodmap $HOME/neo/neo_de.xmodmap
erzeuge f console $HOME/neo/neo.map
erzeuge f asdf $HOME/neo/asdf
chmod u+x $HOME/neo/asdf
erzeuge l asdf
erzeuge f uiae $HOME/neo/uiae
chmod u+x $HOME/neo/uiae
erzeuge l uiae
erzeuge f neorc $HOME/.neorc
# entry in $HOME/.profile with NEO or QWERTZ as standard keyboard layout after login
case $installoption in
2)
echo
echo "Nach dem Login wird NEO die Standardbelegung sein."
echo -e "Um dies zu ändern, kann ${G}installiere_neo${B} ein weiteres Mal ausgeführt werden."
rmfromprofile
datei profile.neo > $HOME/neo/neo.profile
cat $HOME/neo/neo.profile >> $HOME/.profile
rm $HOME/neo/neo.profile
;;
1)
echo
echo "Das Standardlayout wird nich verändert."
echo -e "Zu NEO kann man jederzeit mit der Abrollbewegung ${G}asdf${B} wechseln."
rmfromprofile
datei profile.qwertz > $HOME/neo/neo.profile
cat $HOME/neo/neo.profile >> $HOME/.profile
rm $HOME/neo/neo.profile
;;
esac
# starting NEO layout
echo
echo "Die Belegung wird nun auf NEO geändert…"
cd $HOME/neo
./asdf xmodmap
echo -e "Um zu QWERTZ zurückzukehren, genügt es, die Abrollbewegung ${G}uiae${B} einzugeben."
exit
fi
# configuration file found → delete/deinstall options
echo "Es gibt auf Ihrem System bereits eine Konfiguration für NEO."
echo
echo "Sollte NEO nur für diesen Benutzer installiert sein, haben folgende Möglichkeiten:"
echo
echo " [1] NEO zukünftig nicht mehr als Standardbelegung"
echo -e " NEO wird nicht länger direkt nach dem Login zur Verfügung stehen, wohl aber nach Eingabe von ${G}adsf${B}."
echo
echo
echo " [2] NEO vollständig vom System entfernen"
echo " Dieso Option entfernt alle zuvor angelegten Verzeichnisse, Datein und Einträge zur NEO-Belegung"
echo
echo
echo " Diese Optionen funktionieren nur dann zuverlässig, wenn NEO auch mit ${G}installiere_neo${B} installiert wurde"
echo
deinstalloption=""
while [ ! $deinstalloption ] # choose between deleting NEO as standard layout or delete NEO at all
do # if deleted as standard layout only, ›asdf‹ is still working
echo
read -p "Wählen Sie eine Option [1,2]: " -e deinstalloption
case $deinstalloption in
2)
echo
echo -e "Alle zuvor von ${G}installiere_neo${B} vorgenommen Änderungen am System werden gelöscht!"
echo
read -n1 -p "Drücke eine Taste um fortzufahren oder STRG+C zum Abbrechen"
deinstall # full deinstallation
;;
1)
echo
echo "NEO wird als Standardbelegung entfernt"
echo -e "Zu NEO kann man weiterhin jederzeit mit der Abrollbewegung ${G}asdf${B} wechseln."
echo
read -n1 -p "Drücke eine Taste um fortzufahren oder STRG+C zum Abbrechen"
echo
rmfromprofile # alter the entry in $HOME/.profile; first: remove old entry
echo >> $HOME/.profile # write the new entry
echo "# NEO:" >> $HOME/.profile
echo "# asdf # mit einem # am Zeilenanfang bleibt QWERTZ das Standardlayout, sonst ist es NEO" >> $HOME/.profile
;;
*)
echo
echo "Bitte wählen Sie die Optionen 1, um NEO nicht länger als Standardbelegung zu nutzen"
echo " oder 2, um NEO vollständig zu entfernen"
deinstalloption=""
;;
esac
done
exit
#neo: xmodmap --- Beginn
!! ~/.xmodmap
!!
!! German NEO-Layout
!! adopted 2004 by Hanno Behrens <Hanno.Behrens@gmx.de>
!! inspired by Dvorak/de-ergo http://www.goebel-consult.de/de-ergo/
!! Authors:
!! Benjamin Kellermann <Benjamin dot Kellermann at gmx dot Germany>
!! Erik Streb <mail at erikstreb dot de>
!! Pascal Hauck <pascal dot hauck at web dot de>
!!
!! Other Questions:
!! <mailinglist at neo-layout dot org>
!!
!! $Revision: 1293 $, $Date: 2008-12-19 09:39:48 +0100 (Fr, 19 Dez 2008) $
!! http://pebbles.schattenlauf.de/layout.php
!!
!! To try the layout in this file, simply do xmodmap <file>.
!! To load the layout in this file at X startup, simply store it as
!! ~/.xmodmap
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! Ebenen
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! Ebene 1: normal
! Ebene 2: Shift
! Ebene 3: Mod3
! Ebene 4: Mod4 (zum Markieren Shift+Mod4)
! Ebene 5: Shift+Mod3
! Ebene 6: Mod3+Mod4 (in dieser Reihenfolge!)
! Ebene 7: wird (bis auf technisch bedingte Ausnahmen) nicht belegt
! Multi_key=Compose (keine eigene Ebene): Mod3+Tab or right window key
! Feststellen/Shift_Lock: Shift+Shift
! Mod4_Lock: Mod4(rechts)+Mod4(links)
! Reihenfolge der Ebenen in der Xmodmap:
! Ebene1 Ebene2 Ebene3 Ebene5 Ebene4 Ebene4+Sh Ebene6 Ebene7
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! Modifier definition
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
clear Lock
clear Mod2
! Mod2 war NumLock !
clear Mod3
clear Mod5
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! Shift
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! 50=left 62=right
! Shift+Shift ergibt ein ShiftLock (wie Caps, wirkt aber auf alle Zeichen, nicht nur auf Großbuchstaben)
! Der Lock lässt sich durch ein weiteres Shift lösen.
! Eigentlich (siehe Referenz) sollte hier ein CapsLock stehen.
keycode 50 = Shift_L Shift_Lock
keycode 62 = Shift_R Shift_Lock
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! Mod3
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! 66=left 51=right
! Make CapsLock an modifier called Mod3 (similar to AltGr) (Mode_switch or ISO_Group_Shift is for 3rd and 4th level)
! Make former CapsLock and qwertz-# to Mode_switch or ISO_Group_Shift
! Mod3(links) (=Qwertz-Caps) erlaubt nur 4 Ebenen
! Ohne einen Eintrag in der zweiten Gruppe (=Ebene 3) ergäbe Mod3+Mod3=Group_Shift+Group_Shift=Gruppe 3=Ebene 6. Das ist nicht gewünscht.
keycode 66 = ISO_Group_Shift ISO_Group_Shift ISO_First_Group NoSymbol
keycode 51 = ISO_Group_Shift ISO_Group_Shift ISO_First_Group NoSymbol
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! Mod4
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! 94=left 113=right
! Make the former AltGr and qwertz-< to Mod4 (ISO_Level3_Shift)
! Mod4(rechts)+Mod4(links) lässt Mod4 einrasten (Mod4Lock)
! das funktioniert nur in dieser Reihenfolge, da Mod4(rechts) (=Qwertz-AltGr) nur 4 Ebenen hat
! Der Lock lässt sich durch ein weiteres Mod4 lösen.
keysym less = ISO_Level3_Shift ISO_Level3_Shift ISO_Group_Shift ISO_Group_Shift ISO_Level3_Lock NoSymbol
keysym ISO_Level3_Shift = ISO_Level3_Shift ISO_Level3_Shift ISO_Group_Shift ISO_Group_Shift ISO_Level3_Lock NoSymbol
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! window keys
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! keysym Super_L = Super_L
! keycode 116 = Super_R
keysym Super_R = Multi_key Multi_key
! add Mod4 = Super_L
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! general Lock
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! Einrasten über linke Win-Taste+Modifier, Lösen über nochmaliges Betätigen des Modifiers
! Shift_Lock und Mo4_Lock funktionieren, Mod3_Lock lässt sich aber nicht mehr lösen!!!!
! keycode 115 = ISO_Lock NoSymbol
! add Lock = ISO_Lock
! add Mod3 = ISO_Group_Shift
! add Mod5 = ISO_Level3_Shift
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! main keyboard
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! Tab key
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
keycode 23 = Tab ISO_Left_Tab Multi_key ISO_Level3_Lock
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! Space key
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
keycode 65 = space space space nobreakspace KP_0 KP_0 U202F NoSymbol
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! dead keys
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! Ebene1 Ebene2 Ebene3 Ebene5 Ebene4 Ebene4+Sh Ebene6 Ebene7
keycode 49 = dead_circumflex dead_tilde dead_abovering dead_breve dead_caron Pointer_EnableKeys dead_macron NoSymbol
! called T1 ˆ ˜ ˚ ˘ ˇ (keypad-mouse mode) ¯
keycode 21 = dead_grave NoSymbol dead_diaeresis U1FFE NoSymbol NoSymbol NoSymbol NoSymbol
! called T2 ` ¨ ῾ dasia (asper)
keycode 35 = dead_acute dead_cedilla dead_stroke U1FBF dead_doubleacute NoSymbol dead_abovedot NoSymbol
! called T3 ´ ¸ / ᾿ psili (lenis) ˝ ˙
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! The first row (number Row)
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! Ebene1 Ebene2 Ebene3 Ebene5 Ebene4 Ebene4+Sh Ebene6 Ebene7
keycode 10 = 1 degree onesuperior onesubscript ordfeminine NoSymbol notsign NoSymbol
! ° ¹ ₁ ª ¬
keycode 11 = 2 section twosuperior twosubscript masculine NoSymbol logicalor NoSymbol
! § ² ₂ º ∨
keycode 12 = 3 U2113 threesuperior threesubscript numerosign NoSymbol logicaland NoSymbol
! ℓ liter ³ ₃ № ∧
keycode 13 = 4 guillemotright U203A dagger Prior Prior downtack NoSymbol
! » › † ⊥ perpendicular
keycode 14 = 5 guillemotleft U2039 femalesymbol periodcentered NoSymbol U2221 NoSymbol
! « ‹ ♀ · ∡ angle sign
keycode 15 = 6 EuroSign cent malesymbol sterling NoSymbol U2225 NoSymbol
! € ¢ ♂ £ ∥ parallel
keycode 16 = 7 dollar yen Greek_kappa currency NoSymbol rightarrow NoSymbol
! $ ¥ κ ¤ →
keycode 17 = 8 doublelowquotemark singlelowquotemark leftanglebracket NoSymbol NoSymbol infinity NoSymbol
! „ ‚ ⟨ (bra) ∞
keycode 18 = 9 leftdoublequotemark leftsinglequotemark rightanglebracket KP_Divide KP_Divide containsas NoSymbol
! “ ‘ ⟩ (ket) / / ∋
keycode 19 = 0 rightdoublequotemark rightsinglequotemark zerosubscript KP_Multiply KP_Multiply emptyset NoSymbol
! ” ’ ₀ * * ∅
keycode 20 = minus emdash NoSymbol U2011 KP_Subtract KP_Subtract hyphen NoSymbol
! - — ‑ non-breaking - - soft hyphen
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! The upper row
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! Ebene1 Ebene2 Ebene3 Ebene5 Ebene4 Ebene4+Sh Ebene6 Ebene7
keycode 24 = x X ellipsis Greek_xi U22EE NoSymbol Greek_XI Greek_XI
! … ξ ⋮ Ξ Ξ
keycode 25 = v V underscore NoSymbol BackSpace BackSpace U2259 NoSymbol
! _ ≙ ≙
keycode 26 = l L bracketleft Greek_lambda Up Up Greek_LAMBDA Greek_LAMBDA
! [ λ Λ Λ
keycode 27 = c C bracketright Greek_chi Delete Delete U2102 NoSymbol
! ] χ ℂ komplex
keycode 28 = w W asciicircum Greek_omega Insert Insert Greek_OMEGA Greek_OMEGA
! ^ ω Ω Ω
keycode 29 = k K exclam U03F0 exclamdown NoSymbol radical NoSymbol
! ! ϰ Greek_kappa ¡ √
keycode 30 = h H less Greek_psi KP_7 KP_7 Greek_PSI Greek_PSI
! < ψ Ψ Ψ
keycode 31 = g G greater Greek_gamma KP_8 KP_8 Greek_GAMMA Greek_GAMMA
! > γ Γ Γ
keycode 32 = f F equal Greek_phi KP_9 KP_9 Greek_PHI Greek_PHI
! = φ Φ Φ
keycode 33 = q Q ampersand U03D5 KP_Add KP_Add U211A NoSymbol
! & ϕ Greek_phi + + ℚ rational
keycode 34 = ssharp U1E9E U017F Greek_finalsmallsigma NoSymbol NoSymbol jot NoSymbol
! ß ẞ Capital ß ſ long s ς ∘ ring operator
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! The home row (middle row)
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! Ebene1 Ebene2 Ebene3 Ebene5 Ebene4 Ebene4+Sh Ebene6 Ebene7
keycode 38 = u U backslash NoSymbol Home Home U222E NoSymbol
! \ ∮ contour integral
keycode 39 = i I slash Greek_iota Left Left integral NoSymbol
! / ι ∫
keycode 40 = a A braceleft Greek_alpha Down Down U2200 NoSymbol
! { α ∀ for all
keycode 41 = e E braceright Greek_epsilon Right Right U2203 NoSymbol
! } ε ∃ there exists
keycode 42 = o O asterisk Greek_omicron End End elementof NoSymbol
! * ο ∈
keycode 43 = s S question Greek_sigma questiondown NoSymbol Greek_SIGMA Greek_SIGMA
! ? σ ¿ Σ Σ
keycode 44 = n N parenleft Greek_nu KP_4 KP_4 U2115 NoSymbol
! ( ν ℕ natural
keycode 45 = r R parenright U03F1 KP_5 KP_5 U211D NoSymbol
! ) ϱ Greek_rho ℝ real
keycode 46 = t T minus Greek_tau KP_6 KP_6 partialderivative
! - τ ∂
keycode 47 = d D colon Greek_delta KP_Separator NoSymbol Greek_DELTA Greek_DELTA
! : δ ,/. Δ Δ
keycode 48 = y Y at Greek_upsilon KP_Decimal NoSymbol nabla NoSymbol
! @ υ ./, ∇
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! The lower row
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! Ebene1 Ebene2 Ebene3 Ebene5 Ebene4 Ebene4+Sh Ebene6 Ebene7
keycode 52 = udiaeresis Udiaeresis numbersign NoSymbol Escape Escape U211C NoSymbol
! ü Ü # ℜ real part
keycode 53 = odiaeresis Odiaeresis dollar NoSymbol Tab ISO_Left_Tab U2111 NoSymbol
! ö Ö $ ℑ imaginary part
keycode 54 = adiaeresis Adiaeresis bar Greek_eta Next Next U2135 NoSymbol
! ä Ä | η ℵ alef symbol
keycode 55 = p P asciitilde Greek_pi Return Return Greek_PI Greek_PI
! ~ π Π Π
keycode 56 = z Z grave Greek_zeta Undo Redo U2124 NoSymbol
! ` ζ ℤ integers
keycode 57 = b B plus Greek_beta colon NoSymbol U21D0 NoSymbol
! + β : ⇐
keycode 58 = m M percent Greek_mu KP_1 KP_1 ifonlyif NoSymbol
! % μ ⇔
keycode 59 = comma endash quotedbl Greek_rho KP_2 KP_2 U21D2 NoSymbol
! , – " ρ ⇒ implies
keycode 60 = period enfilledcircbullet apostrophe U03D1 KP_3 KP_3 Greek_THETA Greek_THETA
! . • ' ϑ Greek_theta Θ
keycode 61 = j J semicolon Greek_theta semicolon NoSymbol variation NoSymbol
! ; θ ; ∝ proportional to
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! Keypad
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! The uppest row
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! Ebene1 Ebene2 Ebene3 Ebene5 Ebene6 Ebene7
keycode 77 = Tab ISO_Left_Tab equal approxeq identical NoSymbol
! = ≈ almost equal ≡ identical to
keysym KP_Divide = KP_Divide KP_Divide division U2300 U2223 NoSymbol
! / / ÷ ⌀ diameter ∣ divides
keycode 63 = KP_Multiply KP_Multiply U22C5 U2299 U2297 NoSymbol
! * * ⋅ dot ⊙ cirled dot ⊗ circled times
keycode 82 = KP_Subtract KP_Subtract U2212 U2296 U2238 NoSymbol
! - - − real minus ⊖ cirled minus ∸ dot minus
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! The upper row
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! Ebene1 Ebene2 Ebene3 Ebene5 Ebene6 Ebene7
keycode 79 = KP_7 U2714 U2195 U226A upstile NoSymbol
! ✔ check mark ↕ arrow ≪ much less ⌈
keycode 80 = KP_8 U2718 uparrow intersection U22C2 NoSymbol
! ✘ ballot x ↑ ∩ ⋂ n-ary intersection
keycode 81 = KP_9 NoSymbol U20D7 U226B U2309 NoSymbol
! vector ≫ much greater ⌉
keycode 86 = KP_Add KP_Add plusminus U2295 U2214 NoSymbol
! + + ± circled plus dot plus
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! The middle row
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! Ebene1 Ebene2 Ebene3 Ebene5 Ebene6 Ebene7
keycode 83 = KP_4 club leftarrow includedin U2286 NoSymbol
! ♣ ← ⊂ ⊆
keycode 84 = KP_5 EuroSign brokenbar U22B6 U22B7 NoSymbol
! € ¦ ⊶ original of ⊷ image of
keycode 85 = KP_6 U2023 rightarrow includes U2287 NoSymbol
! ‣ → ⊃ ⊇
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! The lower row
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! Ebene1 Ebene2 Ebene3 Ebene5 Ebene6 Ebene7
keycode 87 = KP_1 diamond U2194 lessthanequal downstile NoSymbol
! ♦ ↔ arrow ≤ ⌊
keycode 88 = KP_2 heart downarrow union U22C3 NoSymbol
! ♥ ↓ ∪ ⋃ n-ary union
keycode 89 = KP_3 U2660 U21CC greaterthanequal U230B NoSymbol
! ♠ ⇌ ≥ ⌋
! keycode 108 = KP_Enter KP_Enter KP_Enter KP_Enter KP_Enter KP_Enter
!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! The lowest row
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! Ebene1 Ebene2 Ebene3 Ebene5 Ebene6 Ebene7
keycode 90 = KP_0 U2423 percent U2030 U25A1 NoSymbol
! ␣ space sign % ‰ per mille □ white square
keycode 91 = comma period KP_Separator minutes seconds NoSymbol
! , . ,/. ′ min,feets ″ sec,inches
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! Bemerkungen
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! 1.) Ebene 6 (hier: der 7. Eintrag) erreicht man über ISO_Group_Shift+ISO_Group_Shift
! (bzw. mode_switch+mode_switch) und über keine andere mir bekannte Kombination. Insbesondere legt
! ISO_Level3_Shift Level3 (Ebene 4, hier: Eintrag 5) fest, verschiebt also nicht. Darum kann man
! ISO_Level3_Shift nur mit Shift sinnvoll kombinieren. Daraus resultiert, dass Ebene 6 nur über
! Mod3+Mod4 (in dieser Reihenfolge!) erreicht werden kann.
!
! 2.) Die KP_-Einträge ermöglichen die Steuerung des Mauscursors mit der Tastatur.
! Hierzu wird mittels Mod4+ß dieser Betriebsmodus ein- und später wieder ausgeschaltet.
! Die Steuerung des Cursors kann über den Ziffernblock (Ebene 4, eventuell mit
! eingerastetem Mod4) erfolgen.
#neo: xmodmap --- Ende
#neo: console --- Beginn
! neo.map - german NEO keyboard layout
! 2008 Pascal Hauck, <pascal.hauck@web.de>
!
! Diese Datei ist experimentell!
! Sollten Fehler auftreten oder sich verschiedene Linux-Distributionen
! anders verhalten als erwartet, sollte dies auf der Mailingliste
! der NEO-Tastaturbelegung gemeldet werden.
!
! Diese Keymap wird über einige Skripte automatisch aus der neo_de.xmodmap
! erzeugt.
!
keymaps 0-18
strings as usual
compose as usual
! --------------------------------------------------------------------------
! Modifier definitions
! --------------------------------------------------------------------------
keycode 42 = Shift
# shift keycode 42 = Caps_Lock
keycode 54 = Shift
# shift keycode 54 = Caps_Lock
keycode 58 = AltGr
# altgr keycode 58 = AltGr_Lock
keycode 43 = AltGr
# altgr keycode 43 = AltGr_Lock
keycode 86 = ShiftL
# shiftl keycode 86 = ShiftL_Lock
keycode 100 = ShiftL
# shiftl keycode 100 = ShiftL_Lock
keycode 1 = Escape Escape Escape Escape
shiftl keycode 57 = Escape
shift shiftl keycode 57 = Escape
altgr shiftl keycode 57 = Escape
alt keycode 1 = Meta_Escape
shift altgr keycode 1 = Meta_Escape
! --------------------------------------------------------------------------
! function keys
! --------------------------------------------------------------------------
! ----Backspace-------------------------------------------------------------
keycode 14 = Delete Delete
alt keycode 14 = Meta_Delete
shift alt keycode 14 = Meta_Delete
! ----Return Enter----------------------------------------------------------
keycode 28 = Return
alt keycode 28 = Meta_Control_m
keycode 96 = KP_Enter
altgr keycode 96 = Hex_F
! ----Tab-------------------------------------------------------------------
keycode 15 = Tab Meta_Tab
alt keycode 15 = Meta_Tab
altgr keycode 15 = Compose
! ----Control Alt-----------------------------------------------------------
keycode 29 = Control
keycode 97 = Control
keycode 56 = Alt
! ----Prt SclLk Pause-------------------------------------------------------
keycode 99 =
control keycode 99 = Control_backslash
alt keycode 99 = Control_backslash
control alt keycode 99 = Meta_Control_backslash
keycode 70 = Scroll_Lock Show_Memory Show_Registers Show_State
alt keycode 70 = Scroll_Lock
keycode 119 = Pause
! ----Home block------------------------------------------------------------
keycode 102 = Find
keycode 104 = Prior
shift keycode 104 = Scroll_Backward
keycode 107 = Select
keycode 109 = Next
shift keycode 109 = Scroll_Forward
keycode 111 = Remove
altgr control keycode 111 = Boot
control alt keycode 111 = Boot
keycode 110 = Insert
! ----Navigation block------------------------------------------------------
keycode 103 = Up
alt keycode 103 = KeyboardSignal
keycode 105 = Left
alt keycode 105 = Decr_Console
keycode 106 = Right
alt keycode 106 = Incr_Console
keycode 108 = Down
! ----Win keys--------------------------------------------------------------
keycode 125 = Decr_Console Last_Console Incr_Console
keycode 126 = Incr_Console Last_Console Decr_Console
! ----menue key-------------------------------------------------------------
keycode 127 = Compose F100
! ----F-keys----------------------------------------------------------------
keycode 59 = F1 F13 Console_13 F25
alt keycode 59 = Console_1
control alt keycode 59 = Console_1
keycode 60 = F2 F14 Console_14 F26
alt keycode 60 = Console_2
control alt keycode 60 = Console_2
keycode 61 = F3 F15 Console_15 F27
alt keycode 61 = Console_3
control alt keycode 61 = Console_3
keycode 62 = F4 F16 Console_16 F28
alt keycode 62 = Console_4
control alt keycode 62 = Console_4
keycode 63 = F5 F17 Console_17 F29
alt keycode 63 = Console_5
control alt keycode 63 = Console_5
keycode 64 = F6 F18 Console_18 F30
alt keycode 64 = Console_6
control alt keycode 64 = Console_6
keycode 65 = F7 F19 Console_19 F31
alt keycode 65 = Console_7
control alt keycode 65 = Console_7
keycode 66 = F8 F20 Console_20 F32
alt keycode 66 = Console_8
control alt keycode 66 = Console_8
keycode 67 = F9 F21 Console_21 F33
alt keycode 67 = Console_9
control alt keycode 67 = Console_9
keycode 68 = F10 F22 Console_22 F34
alt keycode 68 = Console_10
control alt keycode 68 = Console_10
keycode 87 = F11 F23 Console_23 F35
alt keycode 87 = Console_11
control alt keycode 87 = Console_11
keycode 88 = F12 F24 Console_24 F36
alt keycode 88 = Console_12
control alt keycode 88 = Console_12
! ----unknown keys from defkeymap.map---------------------------------------
keycode 84 = Last_Console
keycode 89 =
keycode 90 =
keycode 91 =
keycode 92 =
keycode 93 =
keycode 94 =
keycode 95 =
keycode 101 = Break
keycode 112 = Macro
altgr control keycode 112 = VoidSymbol
shift alt keycode 112 = VoidSymbol
altgr alt keycode 112 = VoidSymbol
keycode 113 = F13
altgr control keycode 113 = VoidSymbol
shift alt keycode 113 = VoidSymbol
altgr alt keycode 113 = VoidSymbol
keycode 114 = F14
altgr control keycode 114 = VoidSymbol
shift alt keycode 114 = VoidSymbol
altgr alt keycode 114 = VoidSymbol
keycode 115 = Help
altgr control keycode 115 = VoidSymbol
shift alt keycode 115 = VoidSymbol
altgr alt keycode 115 = VoidSymbol
keycode 116 = Do
altgr control keycode 116 = VoidSymbol
shift alt keycode 116 = VoidSymbol
altgr alt keycode 116 = VoidSymbol
keycode 117 = F17
altgr control keycode 117 = VoidSymbol
shift alt keycode 117 = VoidSymbol
altgr alt keycode 117 = VoidSymbol
keycode 118 = KP_MinPlus
altgr control keycode 118 = VoidSymbol
shift alt keycode 118 = VoidSymbol
altgr alt keycode 118 = VoidSymbol
keycode 119 = Pause
keycode 120 =
keycode 121 =
keycode 122 =
keycode 123 =
keycode 124 =
! ----Space key-------------------------------------------------------------
keycode 57 = space space space nobreakspace
shiftl keycode 57 = KP_0
shift shiftl keycode 57 = KP_0
altgr shiftl keycode 57 = U+202F
! ----dead keys-------------------------------------------------------------
keycode 41 = dead_circumflex dead_caron dead_breve VoidSymbol
shiftl keycode 41 = VoidSymbol
shift shiftl keycode 41 = VoidSymbol
altgr shiftl keycode 41 = VoidSymbol
keycode 13 = dead_acute dead_grave dead_cedilla VoidSymbol
shiftl keycode 13 = U+0307
shift shiftl keycode 13 = VoidSymbol
altgr shiftl keycode 13 = U+030a
keycode 27 = dead_tilde U+0304 dead_diaeresis VoidSymbol
shiftl keycode 27 = dead_doubleacute
shift shiftl keycode 27 = VoidSymbol
altgr shiftl keycode 27 = VoidSymbol
! --------------------------------------------------------------------------
! Row 1 (number row)
! --------------------------------------------------------------------------
keycode 2 = one degree onesuperior U+2081
shiftl keycode 2 = U+2022
shift shiftl keycode 2 = VoidSymbol
altgr shiftl keycode 2 = notsign
keycode 3 = two U+2116 twosuperior U+2082
shiftl keycode 3 = U+2023
shift shiftl keycode 3 = VoidSymbol
altgr shiftl keycode 3 = U+2228
keycode 4 = three section threesuperior U+2083
shiftl keycode 4 = VoidSymbol
shift shiftl keycode 4 = VoidSymbol
altgr shiftl keycode 4 = U+2227
keycode 5 = four guillemotright U+203A U+2113
shiftl keycode 5 = Prior
shift shiftl keycode 5 = Prior
altgr shiftl keycode 5 = U+22a4
keycode 6 = five guillemotleft U+2039 U+2640
shiftl keycode 6 = VoidSymbol
shift shiftl keycode 6 = VoidSymbol
altgr shiftl keycode 6 = U+2221
keycode 7 = six U+20ac cent U+2642
shiftl keycode 7 = sterling
shift shiftl keycode 7 = VoidSymbol
altgr shiftl keycode 7 = U+2225
keycode 8 = seven dollar yen U+03ba
shiftl keycode 8 = currency
shift shiftl keycode 8 = VoidSymbol
altgr shiftl keycode 8 = U+21C8
keycode 9 = eight U+201e U+201a U+2329
shiftl keycode 9 = KP_Divide
shift shiftl keycode 9 = KP_Divide
altgr shiftl keycode 9 = U+21C5
keycode 10 = nine U+201c U+2018 U+232a
shiftl keycode 10 = KP_Multiply
shift shiftl keycode 10 = KP_Multiply
altgr shiftl keycode 10 = U+220B
keycode 11 = zero U+201d U+2019 U+2080
shiftl keycode 11 = KP_Subtract
shift shiftl keycode 11 = KP_Subtract
altgr shiftl keycode 11 = U+2205
keycode 12 = minus U+2013 U+2014 U+2011
shiftl keycode 12 = VoidSymbol
shift shiftl keycode 12 = VoidSymbol
altgr shiftl keycode 12 = hyphen
! --------------------------------------------------------------------------
! Row 2 (upper row)
! --------------------------------------------------------------------------
keycode 16 = x X U+2026 U+03be
shiftl keycode 16 = U+22EE
shift shiftl keycode 16 = VoidSymbol
altgr shiftl keycode 16 = U+039E
control keycode 16 = Control_x
shift control keycode 16 = Control_x
alt keycode 16 = Meta_x
shift alt keycode 16 = Meta_X
control alt keycode 16 = Meta_Control_x
keycode 17 = v V underscore VoidSymbol
shiftl keycode 17 = BackSpace
shift shiftl keycode 17 = BackSpace
altgr shiftl keycode 17 = U+2259
control keycode 17 = Control_v
shift control keycode 17 = Control_v
alt keycode 17 = Meta_v
shift alt keycode 17 = Meta_V
control alt keycode 17 = Meta_Control_v
keycode 18 = l L bracketleft U+03bb
shiftl keycode 18 = Up
shift shiftl keycode 18 = Up
altgr shiftl keycode 18 = U+039B
control keycode 18 = Control_l
shift control keycode 18 = Control_l
alt keycode 18 = Meta_l
shift alt keycode 18 = Meta_L
control alt keycode 18 = Meta_Control_l
keycode 19 = c C bracketright U+03c7
shiftl keycode 19 = Remove
shift shiftl keycode 19 = Remove
altgr shiftl keycode 19 = U+2102
control keycode 19 = Control_c
shift control keycode 19 = Control_c
alt keycode 19 = Meta_c
shift alt keycode 19 = Meta_C
control alt keycode 19 = Meta_Control_c
keycode 20 = w W asciicircum U+03c9
shiftl keycode 20 = Insert
shift shiftl keycode 20 = Insert
altgr shiftl keycode 20 = U+03A9
control keycode 20 = Control_w
shift control keycode 20 = Control_w
alt keycode 20 = Meta_w
shift alt keycode 20 = Meta_W
control alt keycode 20 = Meta_Control_w
keycode 21 = k K exclam U+03F0
shiftl keycode 21 = exclamdown
shift shiftl keycode 21 = VoidSymbol
altgr shiftl keycode 21 = U+221a
control keycode 21 = Control_k
shift control keycode 21 = Control_k
alt keycode 21 = Meta_k
shift alt keycode 21 = Meta_K
control alt keycode 21 = Meta_Control_k
keycode 22 = h H less U+03c8
shiftl keycode 22 = KP_7
shift shiftl keycode 22 = KP_7
altgr shiftl keycode 22 = U+03A8
control keycode 22 = Control_h
shift control keycode 22 = Control_h
alt keycode 22 = Meta_h
shift alt keycode 22 = Meta_H
control alt keycode 22 = Meta_Control_h
keycode 23 = g G greater U+03b3
shiftl keycode 23 = KP_8
shift shiftl keycode 23 = KP_8
altgr shiftl keycode 23 = U+0393
control keycode 23 = Control_g
shift control keycode 23 = Control_g
alt keycode 23 = Meta_g
shift alt keycode 23 = Meta_G
control alt keycode 23 = Meta_Control_g
keycode 24 = f F equal U+03c6
shiftl keycode 24 = KP_9
shift shiftl keycode 24 = KP_9
altgr shiftl keycode 24 = U+03A6
control keycode 24 = Control_f
shift control keycode 24 = Control_f
alt keycode 24 = Meta_f
shift alt keycode 24 = Meta_F
control alt keycode 24 = Meta_Control_f
keycode 25 = q Q ampersand U+03D5
shiftl keycode 25 = KP_Add
shift shiftl keycode 25 = KP_Add
altgr shiftl keycode 25 = U+211A
control keycode 25 = Control_q
shift control keycode 25 = Control_q
alt keycode 25 = Meta_q
shift alt keycode 25 = Meta_Q
control alt keycode 25 = Meta_Control_q
keycode 26 = ssharp U+1E9E U+017F U+03c2
shiftl keycode 26 = VoidSymbol
shift shiftl keycode 26 = VoidSymbol
altgr shiftl keycode 26 = U+2218
! --------------------------------------------------------------------------
! Row 3 (home row, middle row)
! --------------------------------------------------------------------------
keycode 30 = u U backslash VoidSymbol
shiftl keycode 30 = Home
shift shiftl keycode 30 = Home
altgr shiftl keycode 30 = U+222E
control keycode 30 = Control_u
shift control keycode 30 = Control_u
alt keycode 30 = Meta_u
shift alt keycode 30 = Meta_U
control alt keycode 30 = Meta_Control_u
keycode 31 = i I slash U+03b9
shiftl keycode 31 = Left
shift shiftl keycode 31 = Left
altgr shiftl keycode 31 = U+222b
control keycode 31 = Control_i
shift control keycode 31 = Control_i
alt keycode 31 = Meta_i
shift alt keycode 31 = Meta_I
control alt keycode 31 = Meta_Control_i
keycode 32 = a A braceleft U+03b1
shiftl keycode 32 = Down
shift shiftl keycode 32 = Down
altgr shiftl keycode 32 = U+2200
control keycode 32 = Control_a
shift control keycode 32 = Control_a
alt keycode 32 = Meta_a
shift alt keycode 32 = Meta_A
control alt keycode 32 = Meta_Control_a
keycode 33 = e E braceright U+03b5
shiftl keycode 33 = Right
shift shiftl keycode 33 = Right
altgr shiftl keycode 33 = U+2203
control keycode 33 = Control_e
shift control keycode 33 = Control_e
alt keycode 33 = Meta_e
shift alt keycode 33 = Meta_E
control alt keycode 33 = Meta_Control_e
keycode 34 = o O asterisk U+03bf
shiftl keycode 34 = End
shift shiftl keycode 34 = End
altgr shiftl keycode 34 = U+2208
control keycode 34 = Control_o
shift control keycode 34 = Control_o
alt keycode 34 = Meta_o
shift alt keycode 34 = Meta_O
control alt keycode 34 = Meta_Control_o
keycode 35 = s S question U+03c3
shiftl keycode 35 = questiondown
shift shiftl keycode 35 = VoidSymbol
altgr shiftl keycode 35 = U+03A3
control keycode 35 = Control_s
shift control keycode 35 = Control_s
alt keycode 35 = Meta_s
shift alt keycode 35 = Meta_S
control alt keycode 35 = Meta_Control_s
keycode 36 = n N parenleft U+03bd
shiftl keycode 36 = KP_4
shift shiftl keycode 36 = KP_4
altgr shiftl keycode 36 = U+2115
control keycode 36 = Control_n
shift control keycode 36 = Control_n
alt keycode 36 = Meta_n
shift alt keycode 36 = Meta_N
control alt keycode 36 = Meta_Control_n
keycode 37 = r R parenright U+03F1
shiftl keycode 37 = KP_5
shift shiftl keycode 37 = KP_5
altgr shiftl keycode 37 = U+211D
control keycode 37 = Control_r
shift control keycode 37 = Control_r
alt keycode 37 = Meta_r
shift alt keycode 37 = Meta_R
control alt keycode 37 = Meta_Control_r
keycode 38 = t T minus U+03c4
shiftl keycode 38 = KP_6
shift shiftl keycode 38 = KP_6
altgr shiftl keycode 38 = U+2202
control keycode 38 = Control_t
shift control keycode 38 = Control_t
alt keycode 38 = Meta_t
shift alt keycode 38 = Meta_T
control alt keycode 38 = Meta_Control_t
keycode 39 = d D colon U+03b4
shiftl keycode 39 = comma
shift shiftl keycode 39 = VoidSymbol
altgr shiftl keycode 39 = U+0394
control keycode 39 = Control_d
shift control keycode 39 = Control_d
alt keycode 39 = Meta_d
shift alt keycode 39 = Meta_D
control alt keycode 39 = Meta_Control_d
keycode 40 = y Y at U+03c5
shiftl keycode 40 = period
shift shiftl keycode 40 = VoidSymbol
altgr shiftl keycode 40 = U+2207
control keycode 40 = Control_y
shift control keycode 40 = Control_y
alt keycode 40 = Meta_y
shift alt keycode 40 = Meta_Y
control alt keycode 40 = Meta_Control_y
! --------------------------------------------------------------------------
! Row 4 (lower row)
! --------------------------------------------------------------------------
keycode 44 = udiaeresis Udiaeresis numbersign VoidSymbol
shiftl keycode 44 = Escape
shift shiftl keycode 44 = Escape
altgr shiftl keycode 44 = U+211C
keycode 45 = odiaeresis Odiaeresis dollar VoidSymbol
shiftl keycode 45 = Tab
shift shiftl keycode 45 = Meta_Tab
altgr shiftl keycode 45 = U+2111
keycode 46 = adiaeresis Adiaeresis bar U+03b7
shiftl keycode 46 = Next
shift shiftl keycode 46 = Next
altgr shiftl keycode 46 = U+2135
keycode 47 = p P asciitilde U+03c0
shiftl keycode 47 = Return
shift shiftl keycode 47 = Return
altgr shiftl keycode 47 = U+03A0
control keycode 47 = Control_p
shift control keycode 47 = Control_p
alt keycode 47 = Meta_p
shift alt keycode 47 = Meta_P
control alt keycode 47 = Meta_Control_p
keycode 48 = z Z grave U+03b6
shiftl keycode 48 = VoidSymbol
shift shiftl keycode 48 = VoidSymbol
altgr shiftl keycode 48 = U+2124
control keycode 48 = Control_z
shift control keycode 48 = Control_z
alt keycode 48 = Meta_z
shift alt keycode 48 = Meta_Z
control alt keycode 48 = Meta_Control_z
keycode 49 = b B plus U+03b2
shiftl keycode 49 = colon
shift shiftl keycode 49 = VoidSymbol
altgr shiftl keycode 49 = U+21D0
control keycode 49 = Control_b
shift control keycode 49 = Control_b
alt keycode 49 = Meta_b
shift alt keycode 49 = Meta_B
control alt keycode 49 = Meta_Control_b
keycode 50 = m M percent U+03bc
shiftl keycode 50 = KP_1
shift shiftl keycode 50 = KP_1
altgr shiftl keycode 50 = U+21d4
control keycode 50 = Control_m
shift control keycode 50 = Control_m
alt keycode 50 = Meta_m
shift alt keycode 50 = Meta_M
control alt keycode 50 = Meta_Control_m
keycode 51 = comma VoidSymbol quotedbl U+03c1
shiftl keycode 51 = KP_2
shift shiftl keycode 51 = KP_2
altgr shiftl keycode 51 = U+21D2
keycode 52 = period VoidSymbol apostrophe U+03D1
shiftl keycode 52 = KP_3
shift shiftl keycode 52 = KP_3
altgr shiftl keycode 52 = U+0398
keycode 53 = j J semicolon U+03b8
shiftl keycode 53 = semicolon
shift shiftl keycode 53 = VoidSymbol
altgr shiftl keycode 53 = U+221d
control keycode 53 = Control_j
shift control keycode 53 = Control_j
alt keycode 53 = Meta_j
shift alt keycode 53 = Meta_J
control alt keycode 53 = Meta_Control_j
! --------------------------------------------------------------------------
! Keypad Row 1 (uppest row)
! --------------------------------------------------------------------------
keycode 69 = Tab Meta_Tab equal U+2248
shiftl keycode 69 = U+2260
shift shiftl keycode 69 = VoidSymbol
altgr shiftl keycode 69 = U+2261
keycode 98 = KP_Divide KP_Divide division U+2223
shiftl keycode 98 = U+2300
shift shiftl keycode 98 = VoidSymbol
altgr shiftl keycode 98 = U+2044
keycode 55 = KP_Multiply KP_Multiply U+22C5 multiply
shiftl keycode 55 = U+2299
shift shiftl keycode 55 = VoidSymbol
altgr shiftl keycode 55 = U+2297
keycode 74 = KP_Subtract KP_Subtract U+2212 U+2216
shiftl keycode 74 = U+2296
shift shiftl keycode 74 = VoidSymbol
altgr shiftl keycode 74 = U+2238
! --------------------------------------------------------------------------
! Keypad Row 2 (upper row)
! --------------------------------------------------------------------------
keycode 71 = KP_7 U+2714 U+2195 U+230a
shiftl keycode 71 = Home
shift shiftl keycode 71 = Home
altgr shiftl keycode 71 = U+2308
keycode 72 = KP_8 U+2718 U+2191 U+2229
shiftl keycode 72 = Up
shift shiftl keycode 72 = Up
altgr shiftl keycode 72 = U+22C2
keycode 73 = KP_9 U+2020 U+20D7 U+230B
shiftl keycode 73 = Prior
shift shiftl keycode 73 = Prior
altgr shiftl keycode 73 = U+2309
keycode 78 = KP_Add KP_Add plusminus U+2213
shiftl keycode 78 = U+2295
shift shiftl keycode 78 = VoidSymbol
altgr shiftl keycode 78 = U+2214
! --------------------------------------------------------------------------
! Keypad Row 3 (home row, middle row)
! --------------------------------------------------------------------------
keycode 75 = KP_4 U+2663 U+2190 U+2282
shiftl keycode 75 = Left
shift shiftl keycode 75 = Left
altgr shiftl keycode 75 = U+2286
keycode 76 = KP_5 U+20ac U+221e U+22B6
shiftl keycode 76 = VoidSymbol
shift shiftl keycode 76 = VoidSymbol
altgr shiftl keycode 76 = U+22B7
keycode 77 = KP_6 brokenbar U+2192 U+2283
shiftl keycode 77 = Right
shift shiftl keycode 77 = Right
altgr shiftl keycode 77 = U+2287
! --------------------------------------------------------------------------
! Keypad Row 4 (lower row)
! --------------------------------------------------------------------------
keycode 79 = KP_1 U+2666 U+2194 U+226A
shiftl keycode 79 = End
shift shiftl keycode 79 = End
altgr shiftl keycode 79 = U+2264
keycode 80 = KP_2 U+2665 U+2193 U+222a
shiftl keycode 80 = Down
shift shiftl keycode 80 = Down
altgr shiftl keycode 80 = U+22C3
keycode 81 = KP_3 U+2660 U+21CC U+226B
shiftl keycode 81 = Next
shift shiftl keycode 81 = Next
altgr shiftl keycode 81 = U+2265
! --------------------------------------------------------------------------
! Keypad Row 5 (lowest row)
! --------------------------------------------------------------------------
keycode 82 = KP_0 U+2423 percent U+2030
shiftl keycode 82 = Insert
shift shiftl keycode 82 = Insert
altgr shiftl keycode 82 = U+25A1
keycode 83 = comma period U+002c U+2032
shiftl keycode 83 = Remove
shift shiftl keycode 83 = Remove
altgr shiftl keycode 83 = U+2033
! --------------------------------------------------------------------------
! additional Keys with control function (has to be edited manually!!!!)
! --------------------------------------------------------------------------
control altgr keycode 30 = Control_backslash
alt altgr keycode 30 = Control_backslash
control alt altgr keycode 30 = Meta_Control_backslash
control altgr keycode 19 = Control_bracketright
alt altgr keycode 19 = Control_bracketright
control alt altgr keycode 19 = Meta_Control_bracketright
control altgr keycode 17 = Control_underscore
alt altgr keycode 17 = Control_underscore
control alt altgr keycode 17 = Meta_Control_underscore
control altgr keycode 20 = Control_asciicircum
alt altgr keycode 20 = Control_asciicircum
control alt altgr keycode 20 = Meta_Control_asciicircum
! --------------------------------------------------------------------------
! Strings and Compose
! --------------------------------------------------------------------------
# string F100 = "setleds +num\n"
#neo: console --- Ende
#neo: asdf --- Beginn
#!/bin/sh
# Copyright 2008 Bernd Steinhauser <berniyh@exherbo.org>
# Copyright 2008 Benjamin Kellermann
# Copyright 2008 Pascal Hauck
# Copyright 2008 Erik Streb del Toro
# Distributed under the terms of the GNU General Public License v3
if [ -f "${NEO_CONFIG}" ]; then
. "${NEO_CONFIG}" || die "Failed to source ${NEO_CONFIG}"
elif [ -f "${HOME}"/.neorc ]; then
. "${HOME}"/.neorc || die "Failed to source ${HOME}/.neorc"
elif [ -f /etc/neo.conf ]; then
. /etc/neo.conf || die "Failed to source /etc/neo.conf"
else
echo "No configuration file found. Using default values, this might fail!"
fi
# Default paths
PATH_XMODMAP=${PATH_XMODMAP:-/usr/bin/xmodmap}
PATH_SETXKBMAP=${PATH_SETXKBMAP:-/usr/bin/setxkbmap}
PATH_LOADKEYS=${PATH_LOADKEYS:-/usr/bin/loadkeys}
PATH_SUDO=${PATH_SUDO:-/usr/bin/sudo}
PATH_SETLEDS=${PATH_SETLEDS:-/usr/bin/setleds}
PATH_NUMLOCKX=${PATH_NUMLOCKX:-/usr/bin/numlockx}
PATH_XSET=${PATH_XSET:-/usr/bin/xset}
# Default values
NEO_X_VARIANTE=${NEO_X_VARIANTE:-xkbmap}
NEO_X_VARIANTE=${1-$NEO_X_VARIANTE}
NEO_XKBMAP=${NEO_XKBMAP:-de}
NEO_XKBVARIANT=${NEO_XKBVARIANT:-neo}
NEO_XMODMAP=${NEO_XMODMAP:-$HOME/neo/neo_de.xmodmap}
NEO_XMODMAP_XPROG=${NEO_XMODMAP_XPROG:-$HOME/neo/neo_de_x-prog.xmodmap}
NEO_XMODMAP_ALTERNATIVE=${NEO_XMODMAP_ALTERNATIVE:-$HOME/neo/neo_de_alternative.xmodmap}
NEO_XMODMAP_EVDEV=${NEO_XMODMAP_EVDEV:-$HOME/neo/neo_de_evdev.xmodmap}
NEO_CONSOLE_KEYMAP=${NEO_CONSOLE_KEYMAP:-$HOME/neo/neo.map}
die() {
echo "$@" >&2
exit 1
}
set_xmodmap() {
if [ -e "${PATH_XMODMAP}" ]; then
if [ -f "$@" ]; then
set_xkbmap lv
"${PATH_XMODMAP}" "$@" || ( set_xkbmap de ; die "Failed to set xmodmap $@." )
else
die "Cannot use $@ for xmodmap."
fi
else
die "xmodmap not found, cannot set xmodmap."
fi
}
set_xkbmap() {
if [ -e "${PATH_SETXKBMAP}" ]; then
"${PATH_SETXKBMAP}" "$@" || die "Failed to select xkbmap $@."
else
die "setxkbmap not found, cannot set xkbmap."
fi
}
set_keymap() {
if [ -e "${PATH_LOADKEYS}" ]; then
if [ -f "$@" ]; then
if [ "${EUID}" = 0 ]; then
"${PATH_LOADKEYS}" "$@" || die "Failed to set keymap $@."
elif [ -e "${PATH_SUDO}" ]; then
"${PATH_SUDO}" "${PATH_LOADKEYS}" "$@" || die "Failed to set keymap using sudo."
else
die "You need root priviliges to change the keymap."
fi
else
die "keymap file $@ does not exist."
fi
else
die "loadkeys not found, cannot set keymap."
fi
}
if [ -n "$SSH_CONNECTION" ]; then
die "Cannot set keybord layout in a ssh session."
fi
if [ -z ${DISPLAY} ]; then
set_keymap "${NEO_CONSOLE_KEYMAP}"
if [ -e "${PATH_SETLEDS}" ]; then
"${PATH_SETLEDS}" +num || die "Failed to set NUM status."
else
die "setleds does not exist, cannot set NUM status."
fi
else
if [ -e "${PATH_NUMLOCKX}" ]; then
"${PATH_NUMLOCKX}" off || die "Failed to turn off Numlock."
else
die "numlockx not found, cannot turn off Numlock."
fi
if [ -e "${PATH_XSET}" ]; then
for modifier in 51 94; do
"${PATH_XSET}" -r ${modifier} || die "Failed to unset repeat for modifier ${modifier}."
done
for deadkey in 21 35 49; do
"${PATH_XSET}" -r ${deadkey} || die "Failed to unset repeat for deadkey ${deakey}."
done
else
die "xset not found, cannot set modifiers and dead keys."
fi
case "${NEO_X_VARIANTE}" in
xkbmap)
set_xkbmap "${NEO_XKBMAP}" "${NEO_XKBVARIANT}"
;;
xmodmap)
set_xmodmap "${NEO_XMODMAP}"
;;
xprog)
set_xmodmap "${NEO_XMODMAP_XPROG}"
;;
alternative)
set_xmodmap "${NEO_XMODMAP_ALTERNATIVE}"
;;
evdev)
set_xmodmap "${NEO_XMODMAP_EVDEV}"
;;
*)
die "Unknown Neo X variant ${NEO_X_VARIANTE}."
;;
esac
fi
#neo: asdf --- Ende
#neo: uiae --- Beginn
#!/bin/sh
# Copyright 2008 Bernd Steinhauser <berniyh@exherbo.org>
# Copyright 2008 Benjamin Kellermann
# Copyright 2008 Pascal Hauck
# Copyright 2008 Erik Streb del Toro
# Distributed under the terms of the GNU General Public License v3
if [ -f "${NEO_CONFIG}" ]; then
. "${NEO_CONFIG}" || die "Failed to source ${NEO_CONFIG}"
elif [ -f "${HOME}"/.neorc ]; then
. "${HOME}"/.neorc || die "Failed to source ${HOME}/.neorc"
elif [ -f /etc/neo.conf ]; then
. /etc/neo.conf || die "Failed to source /etc/neo.conf"
else
echo "No configuration file found. Using default values, this might fail!"
fi
# Default paths
PATH_XMODMAP=${PATH_XMODMAP:-/usr/bin/xmodmap}
PATH_SETXKBMAP=${PATH_SETXKBMAP:-/usr/bin/setxkbmap}
PATH_LOADKEYS=${PATH_LOADKEYS:-/usr/bin/loadkeys}
PATH_SUDO=${PATH_SUDO:-/usr/bin/sudo}
PATH_SETLEDS=${PATH_SETLEDS:-/usr/bin/setleds}
PATH_NUMLOCKX=${PATH_NUMLOCKX:-/usr/bin/numlockx}
PATH_XSET=${PATH_XSET:-/usr/bin/xset}
# Default values
STD_X_VARIANTE=${STD_X_VARIANTE:-xkbmap}
STD_XKBMAP=${STD_XKBMAP:-de}
STD_XKBVARIANT=${STD_XKBVARIANT:-nodeadkeys}
STD_CONSOLE_KEYMAP="${STD_CONSOLE_KEYMAP:-de-latin1-nodeadkeys}"
NUM_LOCK_STATUS=${NUM_LOCK_STATUS:-on}
die() {
echo "$@" >&2
exit 1
}
set_xmodmap() {
if [ -e "${PATH_XMODMAP}" ]; then
if [ -f "$@" ]; then
"${PATH_XMODMAP}" "$@" || die "Failed to set xmodmap $@."
else
die "Cannot use $@ for xmodmap."
fi
else
die "xmodmap not found, cannot set xmodmap."
fi
}
set_xkbmap() {
if [ -e "${PATH_SETXKBMAP}" ]; then
"${PATH_SETXKBMAP}" "$@" || die "Failed to select xkbmap $@."
else
die "setxkbmap not found, cannot set xkbmap."
fi
}
set_keymap() {
if [ -e "${PATH_LOADKEYS}" ]; then
if [ -f "$@" ]; then
if [ "${EUID}" = 0 ]; then
"${PATH_LOADKEYS}" "$@" || die "Failed to set keymap $@."
elif [ -e "${PATH_SUDO}" ]; then
"${PATH_SUDO}" "${PATH_LOADKEYS}" "$@" || die "Failed to set keymap using sudo."
else
die "You need root priviliges to change the keymap."
fi
else
die "keymap file $@ does not exist."
fi
else
die "loadkeys not found, cannot set keymap."
fi
}
if [ -n "$SSH_CONNECTION" ]; then
die "Cannot set keybord layout in a ssh session."
fi
if [ -z ${DISPLAY} ]; then
set_keymap "${NEO_CONSOLE_KEYMAP}"
if [ -e "${PATH_SETLEDS}" ]; then
if [ "${NUM_LOCK_STATUS}" = "on" ]; then
"${PATH_SETLEDS}" -num || die "Failed to set num lock status to on."
else
"${PATH_SETLEDS}" +num || die "Failed to set num lock status to off."
fi
else
die "setleds does not exist, cannot set NUM status."
fi
else
if [ -e "${PATH_XSET}" ]; then
for modifier in 51 94; do
"${PATH_XSET}" r ${modifier} || die "Failed to set repeat for modifier ${modifier}."
done
for deadkey in 21 35 49; do
"${PATH_XSET}" r ${deadkey} || die "Failed to set repeat for deadkey ${deakey}."
done
else
die "xset not found, cannot set modifiers and dead keys."
fi
case "${STD_X_VARIANTE}" in
xkbmap)
set_xkbmap "${STD_XKBMAP}" "${STD_XKBVARIANT}"
;;
xmodmap)
set_xkbmap de
set_xmodmap "${STD_XMODMAP}"
;;
*)
die "Unknown standard X variant ${STD_X_VARIANTE}."
;;
esac
if [ -e "${PATH_NUMLOCKX}" ]; then
if [ "${NUM_LOCK_STATUS}" = "on" ]; then
"${PATH_NUMLOCKX}" on || die "Failed to set num lock status to on."
else
"${PATH_NUMLOCKX}" off || die "Failed to set num lock status to off."
fi
else
die "numlockx not found, cannot turn off Numlock."
fi
fi
#neo: uiae --- Ende
#neo: neorc --- Beginn
# This file contains the configuration for the Neo scripts
# Select the neo Variant to be used when using an X Server
# Values are "xkbmap", "xmodmap", "xprog", "alternative" or "evdev"
# default is xkbmap, this variable should always be set
NEO_X_VARIANTE="xmodmap"
# When using xkbmap, you may specify which xkbmap should be used, the default
# is "de" (This is useful if you installed the symbols file under a different
# name):
#NEO_XKBMAP=de
# You can also specify the xkbmap variant to be used, the default is "neo":
#NEO_XKBVARIANT=neo
# When using a xmodmap, you may specify the full path to the xmodmap to be used.
# Default:
NEO_XMODMAP="$HOME/neo/neo_de.xmodmap"
#NEO_XMODMAP_XPROG="$HOME/neo/neo_de_x-prog.xmodmap"
#NEO_XMODMAP_ALTERNATIVE="$HOME/neo/neo_de_alternative.xmodmap"
#NEO_XMODMAP_EVDEV="$HOME/neo/neo_de_evdev.xmodmap"
# Standard keyboard layout to switch back to when executing "uiae":
#STD_XKBMAP=de
# Standard layout variant to switch back to when executing "uiae":
#STD_XKBVARIANT=nodeadkeys
# Numlock status when switching to standard keyboard layout using "uiae",
# values are "on" and "off":
#NUM_LOCK_STATUS=on
# For Neo without an X System set the path to the console keymap
NEO_CONSOLE_KEYMAP="$HOME/neo/neo" # if necessary add „.map“
# Set the standard console keymap to switch back to
#STD_CONSOLE_KEYMAP="de-latin1-nodeadkeys"
# If you installed one of these programs in a non-standard path you may,
# uncomment the variable and change the path to the executable:
#PATH_XMODMAP=/usr/bin/xmodmap
#PATH_SETXKBMAP=/usr/bin/setxkbmap
#PATH_LOADKEYS=/usr/bin/loadkeys
#PATH_SUDO=/usr/bin/sudo
#PATH_SETLEDS=/usr/bin/setleds
#PATH_NUMLOCKX=/usr/bin/numlockx
#PATH_XSET=/usr/bin/xset
#neo: neorc --- Ende
#neo: profile.neo --- Beginn
# NEO:
asdf # mit einem # am Zeilenanfang bleibt QWERTZ das Standardlayout, sonst ist es NEO
#neo: profile.neo --- Ende
#neo: profile.qwertz --- Beginn
# NEO:
# asdf # mit einem # am Zeilenanfang bleibt QWERTZ das Standardlayout, sonst ist es NEO
#neo: profile.qwertz --- Ende
|