-
Hi! Is it possible to have modes similar to sway?
Thanks! |
Beta Was this translation helpful? Give feedback.
Answered by
mahkoh
Oct 18, 2023
Replies: 1 comment 1 reply
-
You can easily implement modes as part of your configuration. E.g. s.bind(MOD | SYM_r, move || {
s.bind(SYM_Left, move || s.focus(Left));
s.bind(SYM_Down, move || s.focus(Down));
s.bind(SYM_Right, move || s.focus(Right));
s.bind(SYM_Up, move || s.focus(Up));
s.bind(SYM_Escape, move || {
s.unbind(SYM_Escape);
s.unbind(SYM_Left);
s.unbind(SYM_Down);
s.unbind(SYM_Right);
s.unbind(SYM_Up);
});
}); However, you cannot currently resize windows with the keyboard in any case. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
mahkoh
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can easily implement modes as part of your configuration. E.g.
However, you cannot currently resize windows with the keyboard in any case.