1
0
Fork 0
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:
damidoug 2025-11-14 21:02:54 +01:00 committed by Austin Horstman
parent b414c94d4e
commit 9f31ea236b

View file

@ -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 = ''