home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2000 February
/
PCWorld_2000-02_cd.bin
/
live
/
usr
/
X11R6
/
lib
/
X11
/
xkb
/
compat
/
misc
< prev
next >
Wrap
Text File
|
1999-09-03
|
890b
|
37 lines
// $XConsortium: misc /main/4 1995/12/07 21:33:00 kaleb $
default partial xkb_compatibility "misc" {
virtual_modifiers Alt,ScrollLock;
// Interpretations for some other useful keys
interpret Terminate_Server { action = Terminate(); };
// Sets the "Alt" virtual modifier
setMods.clearLocks= True;
interpret Alt_L+Any {
virtualModifier= Alt;
action = SetMods(modifiers=modMapMods);
};
interpret Alt_R+Any {
virtualModifier= Alt;
action = SetMods(modifiers=modMapMods);
};
// Sets the "ScrollLock" virtual modifier and
// makes it actually lock when pressed. Sets
// up a map for the scroll lock indicator.
interpret Scroll_Lock+Any {
virtualModifier= ScrollLock;
action = LockMods(modifiers=modMapMods);
};
indicator "Scroll Lock" {
allowExplicit;
whichModState= Locked;
modifiers= ScrollLock;
};
};