- Updated mac_gui and term files to better map keys that only concern shift and/or control.

This commit is contained in:
Ben Reaves
2020-02-26 20:54:23 -06:00
parent c4db31bdf0
commit e8a8c0ed56
3 changed files with 40 additions and 18 deletions

View File

@@ -26,4 +26,12 @@ default partial xkb_types "addmac_levels" {
level_name[11] = "Super Alt";
level_name[12] = "Super Control Alt";
};
type "ONE_LEVEL_CMD" {
modifiers = Shift+Control;
map[Shift] = Level2;
map[Control] = Level2;
level_name[Level1] = "Base";
level_name[Level2] = "Shift";
level_name[Level3] = "Control";
};
};

View File

@@ -26,4 +26,12 @@ default partial xkb_types "addmac_levels" {
level_name[11] = "Super Alt";
level_name[12] = "Super Control Alt";
};
type "ONE_LEVEL_CMD" {
modifiers = Shift+Control;
map[Shift] = Level2;
map[Shift+Control] = Level2;
level_name[Level1] = "Base";
level_name[Level2] = "Shift";
level_name[Level3] = "Shift Control";
};
};