- Disabled Alt mod keymap on terminals for now, causing issues with numerics

This commit is contained in:
Ben Reaves
2020-02-25 02:21:22 -06:00
parent 470541d5f8
commit c6292ee34a
2 changed files with 4 additions and 4 deletions

View File

@@ -34,7 +34,7 @@ partial xkb_symbols "mac_global" {
Tab,
Tab,
backslash,
NoSymbol,
// NoSymbol,
NoSymbol,
backslash,
Tab,
@@ -45,7 +45,7 @@ partial xkb_symbols "mac_global" {
NoAction(),
RedirectKey(key=<BKSL>,clearmods=Shift),
// FK18 is just to clear Alt
RedirectKey(key=<FK18>,clearmods=Mod1),
// RedirectKey(key=<FK18>,clearmods=Mod1),
RedirectKey(key=<FK18>,clearmods=Mod1),
// Also need to remap on the DE level
// to backslash \ for Cmd+Tab

View File

@@ -4,7 +4,7 @@ default partial xkb_types "addmac_levels" {
modifiers = Shift+Mod1+Super+Control;
map[Shift] = Level2;
map[Shift+Control] = Level3;
map[Mod1] = Level4;
// map[Mod1] = Level4;
map[Shift+Mod1] = Level5;
map[Control] = Level6;
map[Super] = Level7;
@@ -16,7 +16,7 @@ default partial xkb_types "addmac_levels" {
level_name[Level1] = "Base";
level_name[Level2] = "Shift";
level_name[Level3] = "Shift Control";
level_name[Level4] = "Alt";
// level_name[Level4] = "Alt";
level_name[Level5] = "Shift Alt";
level_name[Level6] = "Control";
level_name[Level7] = "Super";