9 lines
383 B
Bash
9 lines
383 B
Bash
#!/bin/sh
|
|
|
|
killall borders
|
|
|
|
if [ "{{ rounding }}" = 0 ]; then
|
|
exec borders active_color=0xFF{{colors.primary.default.hex_stripped}} inactive_color=0xFF{{colors.background.default.hex_stripped}} width=6.0 style=square
|
|
else
|
|
exec borders active_color=0xFF{{colors.primary.default.hex_stripped}} inactive_color=0xFF{{colors.background.default.hex_stripped}} width=6.0 style=round
|
|
fi
|