adds borders to macos tiling
This commit is contained in:
parent
f583fe82d7
commit
c694a4b484
1 changed files with 27 additions and 1 deletions
|
|
@ -1,4 +1,4 @@
|
|||
{ inputs, ... }:
|
||||
{ inputs, lib, ... }:
|
||||
{
|
||||
flake.modules.darwin.tiling-desktop =
|
||||
{ pkgs, ... }:
|
||||
|
|
@ -110,5 +110,31 @@
|
|||
];
|
||||
};
|
||||
};
|
||||
|
||||
home-manager.sharedModules = [
|
||||
inputs.self.modules.homeManager.tiling-desktop
|
||||
];
|
||||
};
|
||||
|
||||
flake.modules.homeManager.tiling-desktop =
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
imports = [
|
||||
(
|
||||
{ ... }:
|
||||
lib.mkIf pkgs.stdenv.isDarwin {
|
||||
services.jankyborders = {
|
||||
enable = true;
|
||||
settings = {
|
||||
style = "round";
|
||||
width = 4.0;
|
||||
hidpi = "on";
|
||||
active_color = "0xffc57faf";
|
||||
inactive_color = "0xff1d202f";
|
||||
};
|
||||
};
|
||||
}
|
||||
)
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue