feat: adds jankyborders so that windows have borders now 👍

This commit is contained in:
ahwx 2026-02-13 12:57:49 +01:00
parent af37ea8f2d
commit 47fd035aca

18
modules/home/jankyborders.nix Executable file
View file

@ -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
'';
};
}