diff --git a/modules/home/jankyborders.nix b/modules/home/jankyborders.nix new file mode 100755 index 0000000..86d91e3 --- /dev/null +++ b/modules/home/jankyborders.nix @@ -0,0 +1,18 @@ +{ pkgs, ... }: +{ + home.packages = with pkgs; [ + jankyborders + ]; + home.file.".config/borders/bordersrc" = { + executable = true; + text = '' + borders \ + style=round \ + width=8.0 \ + hidpi=off \ + active_color=0xc0e2e2e3 \ + inactive_color=0xc02c2e34 \ + background_color=0x302c2e34 + ''; + }; +}