1
0
Fork 0
dotfiles/system/darwin/jankyborders.nix

33 lines
640 B
Nix
Raw Normal View History

2024-06-01 22:02:36 +00:00
{ pkgs, config, ... }:
2024-06-01 22:02:02 +00:00
2024-06-01 22:02:36 +00:00
let
pkg = pkgs.jankyborders;
borders-config = [
"style=round"
"active_color=0xaaabb2bf"
"inactive_color=0xdd282a36"
"width=5.0"
"blur_radius=15.0"
"hidpi=on"
"ax_focus=on"
];
in
2024-06-01 22:02:02 +00:00
{
2024-06-01 22:02:36 +00:00
environment.systemPackages = [ pkg ];
launchd.user.agents.jankyborders = {
serviceConfig = {
ProgramArguments = [ "${pkg}/bin/borders" ] ++ borders-config;
KeepAlive = true;
RunAtLoad = true;
ProcessType = "Interactive";
EnvironmentVariables = {
PATH = "${pkg}/bin:${config.environment.systemPath}";
LANG = "en_US.UTF-8";
};
};
};
2024-06-01 22:02:02 +00:00
}