autocommit 2022-04-20 16:11:37 CEST
This commit is contained in:
parent
fa1ec0b36c
commit
ab3c2e44f4
19 changed files with 409 additions and 210 deletions
|
|
@ -13,10 +13,10 @@ use {
|
|||
mods::{Modifiers, ALT, CTRL, SHIFT},
|
||||
syms::{
|
||||
SYM_Super_L, SYM_a, SYM_b, SYM_c, SYM_d, SYM_e, SYM_f, SYM_h, SYM_j, SYM_k, SYM_l,
|
||||
SYM_m, SYM_o, SYM_p, SYM_q, SYM_t, SYM_v, SYM_y, SYM_F1, SYM_F10, SYM_F11, SYM_F12,
|
||||
SYM_F13, SYM_F14, SYM_F15, SYM_F16, SYM_F17, SYM_F18, SYM_F19, SYM_F2, SYM_F20,
|
||||
SYM_F21, SYM_F22, SYM_F23, SYM_F24, SYM_F25, SYM_F3, SYM_F4, SYM_F5, SYM_F6,
|
||||
SYM_F7, SYM_F8, SYM_F9,
|
||||
SYM_m, SYM_o, SYM_p, SYM_q, SYM_t, SYM_u, SYM_v, SYM_y, SYM_F1, SYM_F10, SYM_F11,
|
||||
SYM_F12, SYM_F13, SYM_F14, SYM_F15, SYM_F16, SYM_F17, SYM_F18, SYM_F19, SYM_F2,
|
||||
SYM_F20, SYM_F21, SYM_F22, SYM_F23, SYM_F24, SYM_F25, SYM_F3, SYM_F4, SYM_F5,
|
||||
SYM_F6, SYM_F7, SYM_F8, SYM_F9,
|
||||
},
|
||||
},
|
||||
quit, set_env,
|
||||
|
|
@ -51,6 +51,8 @@ fn configure_seat(s: Seat) {
|
|||
|
||||
s.bind(MOD | SYM_f, move || s.focus_parent());
|
||||
|
||||
s.bind(MOD | SYM_u, move || s.toggle_fullscreen());
|
||||
|
||||
s.bind(MOD | SHIFT | SYM_c, move || s.close());
|
||||
|
||||
s.bind(MOD | SHIFT | SYM_f, move || s.toggle_floating());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue