mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-05 16:41:04 +01:00
aerospace: add more settings examples
This commit is contained in:
parent
b414c94d4e
commit
9f31ea236b
1 changed files with 21 additions and 0 deletions
|
|
@ -128,6 +128,27 @@ in
|
||||||
alt-k = "focus up";
|
alt-k = "focus up";
|
||||||
alt-l = "focus right";
|
alt-l = "focus right";
|
||||||
};
|
};
|
||||||
|
on-window-detected = [
|
||||||
|
{
|
||||||
|
"if".app-id = "com.apple.finder";
|
||||||
|
run = "move-node-to-workspace 9";
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
"if" = {
|
||||||
|
app-id = "com.apple.systempreferences";
|
||||||
|
app-name-regex-substring = "settings";
|
||||||
|
window-title-regex-substring = "substring";
|
||||||
|
workspace = "workspace-name";
|
||||||
|
during-aerospace-startup = true;
|
||||||
|
};
|
||||||
|
check-further-callbacks = true;
|
||||||
|
run = [
|
||||||
|
"layout floating"
|
||||||
|
"move-node-to-workspace S"
|
||||||
|
];
|
||||||
|
}
|
||||||
|
];
|
||||||
}
|
}
|
||||||
'';
|
'';
|
||||||
description = ''
|
description = ''
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue