mirror of
https://github.com/rbreaves/kinto.git
synced 2025-08-05 18:38:26 +02:00
- Updated mac_term for the changes in added GUI and DE support
This commit is contained in:
@@ -27,6 +27,33 @@ partial xkb_symbols "mac_win" {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
partial xkb_symbols "mac_global" {
|
partial xkb_symbols "mac_global" {
|
||||||
|
// Cycle App and In App Tab Switching
|
||||||
|
replace key <TAB> {
|
||||||
|
type[Group1]= "ONE_LEVEL_CTRL",
|
||||||
|
symbols[Group1]= [
|
||||||
|
Tab,
|
||||||
|
Tab,
|
||||||
|
slash,
|
||||||
|
NoSymbol,
|
||||||
|
NoSymbol,
|
||||||
|
slash,
|
||||||
|
Tab,
|
||||||
|
Tab
|
||||||
|
],
|
||||||
|
actions[Group1]= [
|
||||||
|
NoAction(),
|
||||||
|
NoAction(),
|
||||||
|
RedirectKey(key=<BKSL>,clearmods=Shift),
|
||||||
|
// FK18 is just to clear Alt
|
||||||
|
RedirectKey(key=<FK18>,clearmods=Mod1),
|
||||||
|
RedirectKey(key=<FK18>,clearmods=Mod1),
|
||||||
|
// Also need to remap on the DE level
|
||||||
|
// to backslash \ for Cmd+Tab
|
||||||
|
RedirectKey(key=<TAB>),
|
||||||
|
RedirectKey(key=<TAB>,modifiers=Control,clearmods=Mod4),
|
||||||
|
RedirectKey(key=<TAB>,modifiers=Control+Shift,clearmods=Mod4)
|
||||||
|
]
|
||||||
|
};
|
||||||
// Page Up
|
// Page Up
|
||||||
replace key <UP> {
|
replace key <UP> {
|
||||||
type[Group1]= "ONE_LEVEL_CTRL",
|
type[Group1]= "ONE_LEVEL_CTRL",
|
||||||
|
@@ -1,10 +1,29 @@
|
|||||||
default partial xkb_types "addmac_levels" {
|
default partial xkb_types "addmac_levels" {
|
||||||
|
Virtual_modifiers Super;
|
||||||
type "ONE_LEVEL_CTRL" {
|
type "ONE_LEVEL_CTRL" {
|
||||||
modifiers= Shift+Control;
|
modifiers = Shift+Mod1+Super+Control;
|
||||||
map[Shift]= Level2;
|
map[Shift] = Level2;
|
||||||
map[Shift+Control]= Level3;
|
map[Shift+Control] = Level3;
|
||||||
level_name[Level1]= "Base";
|
map[Mod1] = Level4;
|
||||||
level_name[Level2]= "Alt";
|
map[Shift+Mod1] = Level5;
|
||||||
level_name[Level3]= "With Control";
|
map[Control] = Level6;
|
||||||
|
map[Super] = Level7;
|
||||||
|
map[Shift+Super] = Level8;
|
||||||
|
map[Mod1+Control] = 9;
|
||||||
|
map[Super+Control] = 10;
|
||||||
|
map[Super+Mod1] = 11;
|
||||||
|
map[Super+Mod1+Control] = 12;
|
||||||
|
level_name[Level1] = "Base";
|
||||||
|
level_name[Level2] = "Shift";
|
||||||
|
level_name[Level3] = "Shift Control";
|
||||||
|
level_name[Level4] = "Alt";
|
||||||
|
level_name[Level5] = "Shift Alt";
|
||||||
|
level_name[Level6] = "Control";
|
||||||
|
level_name[Level7] = "Super";
|
||||||
|
level_name[Level8] = "Shift Super";
|
||||||
|
level_name[9] = "Control Alt";
|
||||||
|
level_name[10] = "Super Control";
|
||||||
|
level_name[11] = "Super Alt";
|
||||||
|
level_name[12] = "Super Control Alt";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user