HP C8000 hp workstations - hp-ux 11.x graphics administration guide - Page 87

Extend Char/Alt, examples, printing a key map

Page 87 highlights

X Windows configuration details making an x*.hosts file examples Suppose you frequently press the Caps key at the most inopportune moments. You could remove the Caps lock key from the lock modifier, swap it for the f1 key, then map the f1 key to the lock modifier. Do this by creating a little swapper file that contains the following lines: !This file swaps the [Caps] key with the [F1] key. remove Lock = Caps_Lock keysym Caps_Lock = F1 keysym F1 = Caps_Lock add Lock = Caps_Lock Note the use of the ! in the file to start a comment line. To put your "swapper" file into effect, enter the following on the command line: xmodmap swapper If you use such a swapper file, you should probably have an unswapper file. The following file enables you to swap back to the original keyboard mapping without having to exit X11: !This file unswaps the [F1] key with the [Caps] key. remove Lock = Caps_Lock keycode 88 = F1 keycode 55 = Caps_Lock add Lock = Caps_Lock Note the use of the hexadecimal values to reinitialize the keycodes to the proper key symbols. You put your "unswapper" file into effect by entering the following command line: xmodmap unswapper On a larger scale, you can change your current keyboard to a Dvorak keyboard by creating a file with the appropriate keyboard mappings. xmodmap .keymap printing a key map The -pk option prints a list of the key mappings for the current keyboard. xmodmap -pk The list contains the keycode and up to four 2-part columns. The first column contains unmodified key values, the second column contains shifted key values, the third column contains meta (Extend Char/Alt) key 84 Chapter 4

  • 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

X Windows configuration details
making an x*.hosts file
Chapter 4
84
examples
Suppose you frequently press the
Caps
key at the most inopportune
moments. You could remove the
Caps
lock key from the lock modifier,
swap it for the
f1
key, then map the
f1
key to the lock modifier. Do this by
creating a little swapper file that contains the following lines:
!This file swaps the [Caps] key with the [F1] key.
remove Lock = Caps_Lock
keysym Caps_Lock = F1
keysym F1 = Caps_Lock
add Lock = Caps_Lock
Note the use of the ! in the file to start a comment line. To put your
"swapper" file into effect, enter the following on the command line:
xmodmap swapper
If you use such a swapper file, you should probably have an unswapper
file. The following file enables you to swap back to the original keyboard
mapping without having to exit X11:
!This file unswaps the [F1] key with the [Caps] key.
remove Lock = Caps_Lock
keycode 88 = F1
keycode 55 = Caps_Lock
add Lock = Caps_Lock
Note the use of the hexadecimal values to reinitialize the keycodes to the
proper key symbols. You put your “unswapper” file into effect by entering
the following command line:
xmodmap unswapper
On a larger scale, you can change your current keyboard to a Dvorak
keyboard by creating a file with the appropriate keyboard mappings.
xmodmap .keymap
printing a key map
The -pk option prints a list of the key mappings for the current keyboard.
xmodmap -pk
The list contains the keycode and up to four 2-part columns. The first
column contains unmodified key values, the second column contains
shifted key values, the third column contains meta (
Extend Char/Alt
) key