1
0
Fork 0
forked from wry/wry

autocommit 2022-04-08 23:02:38 CEST

This commit is contained in:
Julian Orth 2022-04-08 23:02:38 +02:00
parent 0bd9a70e69
commit 21e2216ce5
40 changed files with 587 additions and 255 deletions

View file

@ -21,6 +21,7 @@ use jay_config::{
Command,
Direction::{Down, Left, Right, Up},
};
use jay_config::keyboard::syms::SYM_c;
const MOD: Modifiers = ALT;
@ -44,6 +45,8 @@ fn configure_seat(s: Seat) {
s.bind(MOD | SYM_f, move || s.focus_parent());
s.bind(MOD | SHIFT | SYM_c, move || s.close());
s.bind(MOD | SHIFT | SYM_f, move || s.toggle_floating());
s.bind(SYM_Super_L, || Command::new("alacritty").spawn());