From 3d46bbf25dc58184c90b17d36d3f3865b32006bc Mon Sep 17 00:00:00 2001 From: Nico Date: Wed, 15 Oct 2025 21:34:27 +1100 Subject: [PATCH] matugen: set jankyborders style to square if rounding is 0 --- stow/.config/matugen/templates/jankyborders.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/stow/.config/matugen/templates/jankyborders.sh b/stow/.config/matugen/templates/jankyborders.sh index 085b48a..e472495 100644 --- a/stow/.config/matugen/templates/jankyborders.sh +++ b/stow/.config/matugen/templates/jankyborders.sh @@ -1,3 +1,9 @@ #!/bin/sh borders active_color=0xFF{{colors.primary.default.hex_stripped}} inactive_color=0xFF{{colors.surface_dim.default.hex_stripped}} width=6.0 + +if [ "{{custom.rounding}}" = 0 ]; then + borders style=square +else + borders style=round +fi