dots/stow/.config/matugen/templates/jankyborders.sh
Nico 4a2747ac86
jankyborders: actually make the matugen script work
shouldn't hang which is better for setting border colours with matugen
2025-11-14 18:52:16 +11:00

11 lines
426 B
Bash

#!/bin/sh
killall borders
if [ "{{custom.rounding}}" = 0 ]; then
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
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