add default workspace change bindings
This commit is contained in:
parent
b065c29aa6
commit
aab3c5df07
2 changed files with 5 additions and 0 deletions
|
@ -5,6 +5,9 @@ Default Keybindings for Epistrophy-NG
|
|||
nextScreen ctrl-Tab
|
||||
prevScreen ctrl-shift-Tab
|
||||
|
||||
nextWorkspace alt-Right
|
||||
prevWorkspace alt-Left
|
||||
|
||||
nextWindow alt-Tab
|
||||
prevWindow shift-alt-Tab
|
||||
|
||||
|
|
|
@ -92,6 +92,8 @@ epist::epist(char **argv, char *dpy_name, char *rc_file)
|
|||
addAction(Action::nextWindowOnAllWorkspaces, Mod1Mask | ControlMask, "Tab");
|
||||
addAction(Action::prevWindowOnAllWorkspaces,
|
||||
Mod1Mask | ShiftMask | ControlMask, "Tab");
|
||||
addAction(Action::prevWorkspace, Mod1Mask, "Left");
|
||||
addAction(Action::nextWorkspace, Mod1Mask, "Right");
|
||||
addAction(Action::raise, Mod1Mask, "Up");
|
||||
addAction(Action::lower, Mod1Mask, "Down");
|
||||
addAction(Action::moveWindowUp, Mod1Mask | ControlMask, "Up", 1);
|
||||
|
|
Loading…
Reference in a new issue