From 4a2747ac86ac51a6410e74ed65eb1d364e08ea38 Mon Sep 17 00:00:00 2001 From: Nico Date: Fri, 14 Nov 2025 18:50:13 +1100 Subject: [PATCH] jankyborders: actually make the matugen script work shouldn't hang which is better for setting border colours with matugen --- stow/.config/matugen/templates/jankyborders.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/stow/.config/matugen/templates/jankyborders.sh b/stow/.config/matugen/templates/jankyborders.sh index e472495..29aead7 100644 --- a/stow/.config/matugen/templates/jankyborders.sh +++ b/stow/.config/matugen/templates/jankyborders.sh @@ -1,9 +1,11 @@ #!/bin/sh -borders active_color=0xFF{{colors.primary.default.hex_stripped}} inactive_color=0xFF{{colors.surface_dim.default.hex_stripped}} width=6.0 +killall borders if [ "{{custom.rounding}}" = 0 ]; then - borders style=square + nohup borders active_color=0xFF{{colors.primary.default.hex_stripped}} inactive_color=0xFF{{colors.surface_dim.default.hex_stripped}} width=6.0 style=square > /dev/null & else - borders style=round + nohup borders active_color=0xFF{{colors.primary.default.hex_stripped}} inactive_color=0xFF{{colors.surface_dim.default.hex_stripped}} width=6.0 style=round > /dev/null & fi + +exit