mirror of
https://github.com/LnL7/nix-darwin.git
synced 2025-03-06 08:47:00 +00:00
trying to fix #1142 testing requested changes adding workspace to monitor force assignment remove formatting tests pass proper tests undo formatting tests for on-window-detected and workspace-to-monitor-force-assignment testing submodules cleanup n if fiz checking final toml null field aerospace callback issue custom null filter for submodule list check for no presense of window-regex and if.workspace config check aerospace: add workspace-to-monitor-force-assignment option and fix on-window-detected type #1208 trying to fix #1142 testing requested changes adding workspace to monitor force assignment remove formatting tests pass proper tests undo formatting tests for on-window-detected and workspace-to-monitor-force-assignment testing submodules cleanup n if fiz checking final toml null field aerospace callback issue custom null filter for submodule list check for no presense of window-regex and if.workspace config check error formatting mishap space left small fix formatting mishaps
92 lines
2.6 KiB
Nix
92 lines
2.6 KiB
Nix
{ config, pkgs, ... }:
|
|
|
|
let
|
|
aerospace = pkgs.runCommand "aerospace-0.0.0" { } "mkdir $out";
|
|
in
|
|
|
|
{
|
|
services.aerospace.enable = true;
|
|
services.aerospace.package = aerospace;
|
|
services.aerospace.settings = {
|
|
after-startup-command = [ "layout tiles" ];
|
|
gaps = {
|
|
outer.left = 8;
|
|
outer.bottom = 8;
|
|
outer.top = 8;
|
|
outer.right = 8;
|
|
};
|
|
mode.main.binding = {
|
|
alt-h = "focus left";
|
|
alt-j = "focus down";
|
|
alt-k = "focus up";
|
|
alt-l = "focus right";
|
|
};
|
|
on-window-detected = [
|
|
{
|
|
"if" = {
|
|
app-id = "Another.Cool.App";
|
|
during-aerospace-startup = false;
|
|
};
|
|
check-further-callbacks = false;
|
|
run = "move-node-to-workspace m";
|
|
}
|
|
{
|
|
"if".app-name-regex-substring = "finder|calendar";
|
|
run = "layout floating";
|
|
}
|
|
{
|
|
"if".workspace = "1";
|
|
run = "layout h_accordion";
|
|
}
|
|
];
|
|
workspace-to-monitor-force-assignment = {
|
|
"1" = 1;
|
|
"2" = "main";
|
|
"3" = "secondary";
|
|
"4" = "built-in";
|
|
"5" = "^built-in retina display$";
|
|
"6" = [ "secondary" "dell" ];
|
|
};
|
|
};
|
|
|
|
test = ''
|
|
echo >&2 "checking aerospace service in ~/Library/LaunchAgents"
|
|
grep "org.nixos.aerospace" ${config.out}/user/Library/LaunchAgents/org.nixos.aerospace.plist
|
|
grep "${aerospace}/Applications/AeroSpace.app/Contents/MacOS/AeroSpace" ${config.out}/user/Library/LaunchAgents/org.nixos.aerospace.plist
|
|
|
|
conf=`sed -En 's/^[[:space:]]*<string>.*--config-path (.*)<\/string>$/\1/p' \
|
|
${config.out}/user/Library/LaunchAgents/org.nixos.aerospace.plist`
|
|
|
|
echo >&2 "checking config in $conf"
|
|
grep 'after-startup-command = \["layout tiles"\]' $conf
|
|
|
|
grep 'bottom = 8' $conf
|
|
grep 'left = 8' $conf
|
|
grep 'right = 8' $conf
|
|
grep 'top = 8' $conf
|
|
|
|
grep 'alt-h = "focus left"' $conf
|
|
grep 'alt-j = "focus down"' $conf
|
|
grep 'alt-k = "focus up"' $conf
|
|
grep 'alt-l = "focus right"' $conf
|
|
|
|
grep 'check-further-callbacks = false' $conf
|
|
grep 'run = "move-node-to-workspace m"' $conf
|
|
grep 'app-id = "Another.Cool.App"' $conf
|
|
grep 'during-aerospace-startup = false' $conf
|
|
|
|
grep 'run = "layout floating"' $conf
|
|
grep 'app-name-regex-substring = "finder|calendar"' $conf
|
|
(! grep 'window-title-regex-substring' $conf)
|
|
|
|
grep 'workspace = "1"' $conf
|
|
grep 'run = "layout h_accordion"' $conf
|
|
|
|
grep '1 = 1' $conf
|
|
grep '2 = "main"' $conf
|
|
grep '3 = "secondary"' $conf
|
|
grep '4 = "built-in"' $conf
|
|
grep '5 = "^built-in retina display$"' $conf
|
|
grep '6 = \["secondary", "dell"\]' $conf
|
|
'';
|
|
}
|