home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2000 May
/
Chip_2000-05_cd2.bin
/
suse
/
inst-sys
/
usr
/
X11R6
/
lib
/
X11
/
xkb
/
compat
/
misc
< prev
next >
Wrap
Text File
|
2000-03-24
|
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;
};
};