mirror of
https://github.com/LnL7/nix-darwin.git
synced 2024-12-14 11:57:34 +00:00
Merge pull request #196 from cmacrae/modules/services/yabai
module: add yabai service
This commit is contained in:
commit
c5f7cee0ed
4 changed files with 132 additions and 0 deletions
|
@ -53,6 +53,7 @@
|
||||||
./services/skhd
|
./services/skhd
|
||||||
./services/synapse-bt.nix
|
./services/synapse-bt.nix
|
||||||
./services/synergy
|
./services/synergy
|
||||||
|
./services/yabai
|
||||||
./programs/bash
|
./programs/bash
|
||||||
./programs/fish.nix
|
./programs/fish.nix
|
||||||
./programs/gnupg.nix
|
./programs/gnupg.nix
|
||||||
|
|
103
modules/services/yabai/default.nix
Normal file
103
modules/services/yabai/default.nix
Normal file
|
@ -0,0 +1,103 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
|
||||||
|
let
|
||||||
|
cfg = config.services.yabai;
|
||||||
|
|
||||||
|
toYabaiConfig = opts:
|
||||||
|
concatStringsSep "\n" (mapAttrsToList
|
||||||
|
(p: v: "yabai -m config ${p} ${toString v}") opts);
|
||||||
|
|
||||||
|
configFile = mkIf (cfg.config != {} || cfg.extraConfig != "")
|
||||||
|
"${pkgs.writeScript "yabairc" (
|
||||||
|
(if (cfg.config != {})
|
||||||
|
then "${toYabaiConfig cfg.config}"
|
||||||
|
else "")
|
||||||
|
+ optionalString (cfg.extraConfig != "") cfg.extraConfig)}";
|
||||||
|
in
|
||||||
|
|
||||||
|
{
|
||||||
|
options = with types; {
|
||||||
|
services.yabai.enable = mkOption {
|
||||||
|
type = bool;
|
||||||
|
default = false;
|
||||||
|
description = "Whether to enable the yabai window manager.";
|
||||||
|
};
|
||||||
|
|
||||||
|
services.yabai.package = mkOption {
|
||||||
|
type = path;
|
||||||
|
description = "The yabai package to use.";
|
||||||
|
};
|
||||||
|
|
||||||
|
services.yabai.enableScriptingAddition = mkOption {
|
||||||
|
type = bool;
|
||||||
|
default = false;
|
||||||
|
description = ''
|
||||||
|
Whether to enable yabai's scripting-addition.
|
||||||
|
SIP must be disabled for this to work.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
services.yabai.config = mkOption {
|
||||||
|
type = attrs;
|
||||||
|
default = {};
|
||||||
|
example = literalExample ''
|
||||||
|
{
|
||||||
|
focus_follows_mouse = "autoraise";
|
||||||
|
mouse_follows_focus = "off";
|
||||||
|
window_placement = "second_child";
|
||||||
|
window_opacity = "off";
|
||||||
|
top_padding = 36;
|
||||||
|
bottom_padding = 10;
|
||||||
|
left_padding = 10;
|
||||||
|
right_padding = 10;
|
||||||
|
window_gap = 10;
|
||||||
|
}
|
||||||
|
'';
|
||||||
|
description = ''
|
||||||
|
Key/Value pairs to pass to yabai's 'config' domain, via the configuration file.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
services.yabai.extraConfig = mkOption {
|
||||||
|
type = str;
|
||||||
|
default = "";
|
||||||
|
example = literalExample ''
|
||||||
|
yabai -m rule --add app='System Preferences' manage=off
|
||||||
|
'';
|
||||||
|
description = "Extra arbitrary configuration to append to the configuration file";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkMerge [
|
||||||
|
(mkIf (cfg.enable) {
|
||||||
|
environment.systemPackages = [ cfg.package ];
|
||||||
|
|
||||||
|
launchd.user.agents.yabai = {
|
||||||
|
serviceConfig.ProgramArguments = [ "${cfg.package}/bin/yabai" ]
|
||||||
|
++ optionals (cfg.config != {} || cfg.extraConfig != "") [ "-c" configFile ];
|
||||||
|
|
||||||
|
serviceConfig.KeepAlive = true;
|
||||||
|
serviceConfig.RunAtLoad = true;
|
||||||
|
serviceConfig.EnvironmentVariables = {
|
||||||
|
PATH = "${cfg.package}/bin:${config.environment.systemPath}";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
})
|
||||||
|
|
||||||
|
# TODO: [@cmacrae] Handle removal of yabai scripting additions
|
||||||
|
(mkIf (cfg.enableScriptingAddition) {
|
||||||
|
launchd.daemons.yabai-sa = {
|
||||||
|
script = ''
|
||||||
|
if [ ! $(${cfg.package}/bin/yabai --check-sa) ]; then
|
||||||
|
${cfg.package}/bin/yabai --install-sa
|
||||||
|
fi
|
||||||
|
'';
|
||||||
|
|
||||||
|
serviceConfig.RunAtLoad = true;
|
||||||
|
serviceConfig.KeepAlive.SuccessfulExit = false;
|
||||||
|
};
|
||||||
|
})
|
||||||
|
];
|
||||||
|
}
|
|
@ -123,6 +123,7 @@ let
|
||||||
tests.services-skhd = makeTest ./tests/services-skhd.nix;
|
tests.services-skhd = makeTest ./tests/services-skhd.nix;
|
||||||
tests.services-synapse-bt = makeTest ./tests/services-synapse-bt.nix;
|
tests.services-synapse-bt = makeTest ./tests/services-synapse-bt.nix;
|
||||||
tests.services-synergy = makeTest ./tests/services-synergy.nix;
|
tests.services-synergy = makeTest ./tests/services-synergy.nix;
|
||||||
|
tests.services-yabai = makeTest ./tests/services-yabai.nix;
|
||||||
tests.system-defaults-write = makeTest ./tests/system-defaults-write.nix;
|
tests.system-defaults-write = makeTest ./tests/system-defaults-write.nix;
|
||||||
tests.system-environment = makeTest ./tests/system-environment.nix;
|
tests.system-environment = makeTest ./tests/system-environment.nix;
|
||||||
tests.system-keyboard-mapping = makeTest ./tests/system-keyboard-mapping.nix;
|
tests.system-keyboard-mapping = makeTest ./tests/system-keyboard-mapping.nix;
|
||||||
|
|
27
tests/services-yabai.nix
Normal file
27
tests/services-yabai.nix
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
|
||||||
|
let
|
||||||
|
yabai = pkgs.runCommand "yabai-0.0.0" {} "mkdir $out";
|
||||||
|
in
|
||||||
|
|
||||||
|
{
|
||||||
|
services.yabai.enable = true;
|
||||||
|
services.yabai.package = yabai;
|
||||||
|
services.yabai.config = { focus_follows_mouse = "autoraise"; };
|
||||||
|
services.yabai.extraConfig = "yabai -m rule --add app='System Preferences' manage=off";
|
||||||
|
|
||||||
|
test = ''
|
||||||
|
echo >&2 "checking yabai service in ~/Library/LaunchAgents"
|
||||||
|
grep "org.nixos.yabai" ${config.out}/user/Library/LaunchAgents/org.nixos.yabai.plist
|
||||||
|
grep "${yabai}/bin/yabai" ${config.out}/user/Library/LaunchAgents/org.nixos.yabai.plist
|
||||||
|
|
||||||
|
conf=`sed -En '/<string>-c<\/string>/{n; s/\s+?<\/?string>//g; p;}' \
|
||||||
|
${config.out}/user/Library/LaunchAgents/org.nixos.yabai.plist`
|
||||||
|
|
||||||
|
echo >&2 "checking config in $conf"
|
||||||
|
grep "yabai -m config focus_follows_mouse autoraise" $conf
|
||||||
|
grep "yabai -m rule --add app='System Preferences' manage=off" $conf
|
||||||
|
'';
|
||||||
|
}
|
Loading…
Reference in a new issue