mirror of
https://github.com/smg1024/nix-darwin.git
synced 2026-05-22 20:32:59 +09:00
fix(desktop): aerospace resize mode
This commit is contained in:
parent
c5f648be47
commit
571328d2bf
1 changed files with 37 additions and 79 deletions
|
|
@ -34,91 +34,49 @@
|
||||||
alt-shift-j = "move down";
|
alt-shift-j = "move down";
|
||||||
alt-shift-k = "move up";
|
alt-shift-k = "move up";
|
||||||
alt-shift-l = "move right";
|
alt-shift-l = "move right";
|
||||||
alt-minus = "resize smart -50";
|
alt-1 = "workspace --auto-back-and-forth 1";
|
||||||
alt-equal = "resize smart +50";
|
alt-2 = "workspace --auto-back-and-forth 2";
|
||||||
alt-1 = "workspace 1";
|
alt-3 = "workspace --auto-back-and-forth 3";
|
||||||
alt-2 = "workspace 2";
|
alt-4 = "workspace --auto-back-and-forth 4";
|
||||||
alt-3 = "workspace 3";
|
alt-5 = "workspace --auto-back-and-forth 5";
|
||||||
alt-4 = "workspace 4";
|
alt-6 = "workspace --auto-back-and-forth 6";
|
||||||
alt-5 = "workspace 5";
|
alt-7 = "workspace --auto-back-and-forth 7";
|
||||||
alt-6 = "workspace 6";
|
alt-8 = "workspace --auto-back-and-forth 8";
|
||||||
alt-7 = "workspace 7";
|
alt-9 = "workspace --auto-back-and-forth 9";
|
||||||
alt-8 = "workspace 8";
|
alt-shift-1 = ["move-node-to-workspace 1" "workspace --auto-back-and-forth 1"];
|
||||||
alt-9 = "workspace 9";
|
alt-shift-2 = ["move-node-to-workspace 2" "workspace --auto-back-and-forth 2"];
|
||||||
alt-shift-1 = [
|
alt-shift-3 = ["move-node-to-workspace 3" "workspace --auto-back-and-forth 3"];
|
||||||
"move-node-to-workspace 1"
|
alt-shift-4 = ["move-node-to-workspace 4" "workspace --auto-back-and-forth 4"];
|
||||||
"workspace 1"
|
alt-shift-5 = ["move-node-to-workspace 5" "workspace --auto-back-and-forth 5"];
|
||||||
];
|
alt-shift-6 = ["move-node-to-workspace 6" "workspace --auto-back-and-forth 6"];
|
||||||
alt-shift-2 = [
|
alt-shift-7 = ["move-node-to-workspace 7" "workspace --auto-back-and-forth 7"];
|
||||||
"move-node-to-workspace 2"
|
alt-shift-8 = ["move-node-to-workspace 8" "workspace --auto-back-and-forth 8"];
|
||||||
"workspace 2"
|
alt-shift-9 = ["move-node-to-workspace 9" "workspace --auto-back-and-forth 9"];
|
||||||
];
|
|
||||||
alt-shift-3 = [
|
|
||||||
"move-node-to-workspace 3"
|
|
||||||
"workspace 3"
|
|
||||||
];
|
|
||||||
alt-shift-4 = [
|
|
||||||
"move-node-to-workspace 4"
|
|
||||||
"workspace 4"
|
|
||||||
];
|
|
||||||
alt-shift-5 = [
|
|
||||||
"move-node-to-workspace 5"
|
|
||||||
"workspace 5"
|
|
||||||
];
|
|
||||||
alt-shift-6 = [
|
|
||||||
"move-node-to-workspace 6"
|
|
||||||
"workspace 6"
|
|
||||||
];
|
|
||||||
alt-shift-7 = [
|
|
||||||
"move-node-to-workspace 7"
|
|
||||||
"workspace 7"
|
|
||||||
];
|
|
||||||
alt-shift-8 = [
|
|
||||||
"move-node-to-workspace 8"
|
|
||||||
"workspace 8"
|
|
||||||
];
|
|
||||||
alt-shift-9 = [
|
|
||||||
"move-node-to-workspace 9"
|
|
||||||
"workspace 9"
|
|
||||||
];
|
|
||||||
alt-tab = "workspace-back-and-forth";
|
alt-tab = "workspace-back-and-forth";
|
||||||
alt-shift-tab = "move-node-to-monitor --wrap-around next";
|
alt-shift-tab = "move-node-to-monitor --wrap-around next";
|
||||||
|
|
||||||
|
cmd-h = [];
|
||||||
|
cmd-alt-h = [];
|
||||||
|
|
||||||
alt-shift-semicolon = "mode service";
|
alt-shift-semicolon = "mode service";
|
||||||
|
alt-shift-r = "mode resize";
|
||||||
};
|
};
|
||||||
|
|
||||||
mode.service.binding = {
|
mode.service.binding = {
|
||||||
esc = [
|
esc = ["reload-config" "mode main"];
|
||||||
"reload-config"
|
r = ["flatten-workspace-tree" "mode main"];
|
||||||
"mode main"
|
f = ["layout floating tiling" "mode main"];
|
||||||
];
|
backspace = ["close-all-windows-but-current" "mode main"];
|
||||||
r = [
|
alt-shift-h = ["join-with left" "mode main"];
|
||||||
"flatten-workspace-tree"
|
alt-shift-j = ["join-with down" "mode main"];
|
||||||
"mode main"
|
alt-shift-k = ["join-with up" "mode main"];
|
||||||
];
|
alt-shift-l = ["join-with right" "mode main"];
|
||||||
f = [
|
};
|
||||||
"layout floating tiling"
|
|
||||||
"mode main"
|
mode.resize.binding = {
|
||||||
];
|
minus = "resize smart -50";
|
||||||
backspace = [
|
equal = "resize smart +50";
|
||||||
"close-all-windows-but-current"
|
esc = "mode main";
|
||||||
"mode main"
|
|
||||||
];
|
|
||||||
alt-shift-h = [
|
|
||||||
"join-with left"
|
|
||||||
"mode main"
|
|
||||||
];
|
|
||||||
alt-shift-j = [
|
|
||||||
"join-with down"
|
|
||||||
"mode main"
|
|
||||||
];
|
|
||||||
alt-shift-k = [
|
|
||||||
"join-with up"
|
|
||||||
"mode main"
|
|
||||||
];
|
|
||||||
alt-shift-l = [
|
|
||||||
"join-with right"
|
|
||||||
"mode main"
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
|
|
||||||
on-window-detected = [
|
on-window-detected = [
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue