blob: 71bf8277630f09d2a6bc769bcf3adc20bf9f063e (
plain)
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
|
$OpenBSD$
Index: XTerm.ad
--- XTerm.ad.orig
+++ XTerm.ad
@@ -93,7 +93,7 @@
*vtMenu*visualbell*Label: Enable Visual Bell
*vtMenu*bellIsUrgent*Label: Enable Bell Urgency
*vtMenu*poponbell*Label: Enable Pop on Bell
-*vtMenu*cursorblink*Label: Enable Blinking Cursor
+*vtMenu*cursorblink*Label: Toggle Cursor Blinking
*vtMenu*titeInhibit*Label: Enable Alternate Screen Switching
*vtMenu*activeicon*Label: Enable Active Icon
*vtMenu*softreset*Label: Do Soft Reset
@@ -270,3 +270,26 @@
!*allowTcapOps: false
!*allowTitleOps: false
!*allowWindowOps: false
+
+! OpenBSD local modifications
+
+! Enable UTF-8 mode since OpenBSD does not support any other multibyte
+! locales. Even for people using the C/POSIX locale for everything,
+! that's safer and more usable than the upstream default of "medium".
+*locale: UTF-8
+
+! Normalization by default violates the principle of least surprise
+! and also breaks cut and paste of filenames, so disable it.
+*precompose: false
+
+! ScrollBar by default
+*scrollBar: true
+
+! Traditional function keys behaviour
+*modifyFunctionKeys: 0
+
+! Never hide the mouse pointer
+*pointerMode: 0
+
+! Uncomment this to have a login shell by default
+!*VT100*login_shell: true
|